using System.ComponentModel.DataAnnotations; namespace PSTW_CentralSystem.Areas.Inventory.Models { public class CompanyModel { [Key] public int CompanyId { get; set; } public required string Name { get; set; } } }