OpenAuth.Net/OpenAuth.Mvc/Controllers/HomeController.cs
2015-09-22 23:10:00 +08:00

17 lines
310 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace OpenAuth.Mvc.Controllers
{
public class HomeController : BaseController
{
public ActionResult Index()
{
return View();
}
}
}