PSTW_CentralizeSystem/Areas/Inventory/Models/Company.cs
2024-11-22 14:23:30 +08:00

9 lines
191 B
C#

namespace PSTW_CentralSystem.Areas.Inventory.Models
{
public class Company
{
public string Name { get; set; }
public List<string> Departments { get; set; }
}
}