Light12306/ChatRoomServer.Www/Areas/Api/Controllers/RoomController.cs
2015-07-03 21:04:37 +08:00

15 lines
277 B
C#

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
{
}
}