This commit is contained in:
2020-11-10 19:53:52 +00:00
parent 3ef99ec59d
commit b02f38078d

View File

@@ -28,14 +28,20 @@ namespace AyaNova.Models
public string WebAddress { get; set; }
public string PopUpNotes { get; set; }
public bool BillHeadOffice { get; set; }
public long HeadOfficeID { get; set; }
public string TechNotes { get; set; }
public long? HeadOfficeID { get; set; }
public string TechNotes { get; set; }
public string AccountNumber { get; set; }
public bool UsesBanking { get; set; }
public long? ContractID { get; set; }
public DateTime? ContractExpires { get; set; }
public long? DefaultServiceTemplateID { get; set; }
public Customer()
{
Tags = new List<string>();
BillHeadOffice = false;
UsesBanking = false;
}
[NotMapped, JsonIgnore]