10 lines
182 B
C#
10 lines
182 B
C#
|
using System.Web.Mvc;
|
|||
|
|
|||
|
namespace VideoGameQuotes.Web.Controllers {
|
|||
|
public class HomeController : Controller {
|
|||
|
public ActionResult Index() {
|
|||
|
return View();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|