9 lines
191 B
C#
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; }
|
|
}
|
|
}
|