Light12306/ChatRoomServer.Www/Controllers/UsersController.cs
2015-07-13 21:18:04 +08:00

17 lines
322 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace ChatRoomServer.Www.Controllers
{
public class UsersController : Controller
{
// GET: Users
public ActionResult AbuseList()
{
return View();
}
}
}