PSTW_CentralizeSystem/Areas/Inventory/Models/CompanyModel.cs
2024-11-27 15:52:26 +08:00

14 lines
385 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace PSTW_CentralSystem.Areas.Inventory.Models
{
public class CompanyModel
{
[Key]
public int CompanyId { get; set; }
public required string Name { get; set; }
public virtual ICollection<DepartmentModel>? Departments { get; set; }
}
}