OpenAuth.Net/OpenAuth.Web/Controllers/HomeController.cs
2015-04-15 23:57:36 +08:00

21 lines
326 B
C#

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