15 lines
277 B
C#
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
|
|
{
|
|
}
|
|
}
|