13 lines
241 B
C#
13 lines
241 B
C#
|
using System.Web.Mvc;
|
|||
|
|
|||
|
namespace Bootstrap.Client.Controllers
|
|||
|
{
|
|||
|
public class HomeController : Controller
|
|||
|
{
|
|||
|
// GET: Home
|
|||
|
public ActionResult Index()
|
|||
|
{
|
|||
|
return View();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|