You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
272 B

using Infrastructure.Web;
using Microsoft.AspNetCore.Mvc;
namespace WinService.Areas.Admin.Controllers
{
[Area("Admin")]
public class HomeController : BaseController
{
public IActionResult Index()
{
return View();
}
}
}