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 CompanyName { get; set; } public virtual ICollection? Departments { get; set; } } }