PSTW_CentralizeSystem/Models/CompanyModel.cs
2024-12-05 16:11:52 +08:00

14 lines
376 B
C#

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