using System; using System.Collections.Generic; namespace Workbench.Entity { public partial class Customer { public Customer() { Contacts = new HashSet(); } /// /// Setting primary key /// public long Id { get; set; } /// /// Reference to tenant code that customer belongs /// public string TenantCode { get; set; } = null!; /// /// Customer code. Main key to search. /// public string Code { get; set; } = null!; /// /// Customer head name. For identification usage. /// public string Name { get; set; } = null!; /// /// Customer tax number (business identifier) /// public string? TaxNumber { get; set; } /// /// Customer VAT number (VAT identification) /// public string? VatNumber { get; set; } /// /// Flag if VAT calculation is allowed /// public bool? VatIncluded { get; set; } /// /// Tax country region code /// public string TaxCountryCode { get; set; } = null!; /// /// Record created timestamp /// public DateTime Created { get; set; } /// /// Record modified timestamp /// public DateTime? Modified { get; set; } /// /// Record modifier signature /// public string? Modifier { get; set; } public virtual ICollection Contacts { get; set; } } }