vgquotes/Src/VideoGameQuotes.Web/Controllers/HomeController.cs

10 lines
182 B
C#
Raw Normal View History

2011-02-09 03:50:45 +00:00
using System.Web.Mvc;
namespace VideoGameQuotes.Web.Controllers {
public class HomeController : Controller {
public ActionResult Index() {
return View();
}
}
}