PSTW_CentralizeSystem/Areas/Inventory/Controllers/Admin/InventoryAdminController.cs
2024-11-26 16:26:56 +08:00

14 lines
287 B
C#

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