27 lines
1007 B
C#
27 lines
1007 B
C#
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; }
|
|
|
|
#region Navigation
|
|
public virtual ICollection<CODItem> CODItemS { get; set; }
|
|
public virtual ICollection<RolUser> RolUsers { get; set; }
|
|
public virtual ICollection<PermissionPeriod> PermissionPeriods { get; set; }
|
|
public virtual ICollection<Customer> Customers { get; set; }
|
|
public virtual ICollection<Invoice> invoices { get; set; }
|
|
#endregion
|
|
}
|
|
}
|