13 lines
178 B
C#
13 lines
178 B
C#
using System.Web.Mvc;
|
|
|
|
namespace MileageTraker.Web.Controllers
|
|
{
|
|
public class HomeController : ControllerBase
|
|
{
|
|
public ActionResult About()
|
|
{
|
|
return View();
|
|
}
|
|
}
|
|
}
|