PSTW_CentralizeSystem/Areas/Inventory/Controllers/Admin/InventoryMasterController.cs
2025-01-06 16:31:22 +08:00

15 lines
335 B
C#

using Microsoft.AspNetCore.Mvc;
namespace PSTW_CentralSystem.Areas.Inventory.Controllers.Admin
{
[Area("Inventory")]
//[Authorize(Policy = "RoleModulePolicy")]
public class InventoryMasterController : Controller
{
public IActionResult AdminDashboard()
{
return View();
}
}
}