Light12306/ChatRoomServer.Www/Controllers/UsersController.cs

32 lines
466 B
C#
Raw Normal View History

2015-07-10 21:32:52 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace ChatRoomServer.Www.Controllers
{
2015-08-03 15:07:49 +08:00
public class UsersController : Controller
{
// GET: Users
public ActionResult AbuseList()
{
return View();
}
2015-07-16 21:00:51 +08:00
2015-08-03 15:07:49 +08:00
public ActionResult ConnectionLog()
{
return View();
}
2015-07-16 21:00:51 +08:00
2015-08-03 15:07:49 +08:00
public ActionResult UserList()
{
return View();
}
2015-07-16 21:00:51 +08:00
2015-08-03 15:07:49 +08:00
public ActionResult BlockList()
{
return View();
}
}
2015-07-10 21:32:52 +08:00
}