Light12306/ChatRoomServer.Www/Controllers/msgsController.cs

17 lines
318 B
C#
Raw Normal View History

2015-07-15 20:55:09 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace ChatRoomServer.Www.Controllers
{
public class MsgsController : Controller
{
// GET: msgs
public ActionResult LogList()
{
return View();
}
}
}