namespace Back.Data.Models { public class Company { public int ID { get; set; } public string Name { get; set; } public string? Email { get; set; } public string? Phone { get; set; } public string Mobile { get; set; } public string? BranchID { get; set; } public string? EconomicCode { get; set; } public string? UniqeMemory { get; set; } public string? PrivateKey { get; set; } public byte[]? Logo { get; set; } public string RegisterDate { get; set; } public bool IsActive { get; set; } public decimal Credit { get; set; } = 0; #region Navigation public virtual ICollection CODItemS { get; set; } public virtual ICollection RolUsers { get; set; } public virtual ICollection PermissionPeriods { get; set; } public virtual ICollection Customers { get; set; } public virtual ICollection invoices { get; set; } public virtual ICollection CreditDocuments { get; set; } #endregion } }