Files
OnDoc/ILMocup/Controllers/HomeController.cs
Stefan Hutter 09bcee5a2a Update 20241112
2024-11-12 14:22:55 +01:00

19 lines
327 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
namespace ILMocup.Controllers
{
public class HomeController : Controller
{
public ActionResult Index()
{
ViewBag.Title = "Home Page";
return View();
}
}
}