vgquotes/Src/VideoGameQuotes.Web/Controllers/HomeController.cs
2011-02-10 04:39:59 +00:00

10 lines
182 B
C#

using System.Web.Mvc;
namespace VideoGameQuotes.Web.Controllers {
public class HomeController : Controller {
public ActionResult Index() {
return View();
}
}
}