Light12306/ChatRoomServer.Www/Areas/Api/Controllers/RoomController.cs

15 lines
277 B
C#
Raw Normal View History

2015-07-03 21:04:37 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
namespace ChatRoomServer.Www.Areas.Api.Controllers
{
[RoutePrefix("api/room")]
public class RoomController : ApiController
{
}
}