Api/NetinaShop.Api/Controller/HomeController.cs

15 lines
281 B
C#

using NetinaShop.Api.Views.Home;
namespace NetinaShop.Api.Controller;
[Route("")]
[AllowAnonymous]
public class HomeController : Microsoft.AspNetCore.Mvc.Controller
{
[HttpGet]
public IActionResult Index()
{
return View("Index", new IndexModel());
}
}