This commit is contained in:
2020-11-11 00:35:09 +00:00
parent 119752be02
commit c026e4145b
4 changed files with 164 additions and 5 deletions

View File

@@ -35,10 +35,15 @@ namespace AyaNova.Models
public long? ContractID { get; set; }
public DateTime? ContractExpires { get; set; }
public long? DefaultServiceTemplateID { get; set; }
[Phone]
public string Phone1 { get; set; }
[Phone]
public string Phone2 { get; set; }
[Phone]
public string Phone3 { get; set; }
[Phone]
public string Phone4 { get; set; }
[Phone]
public string Phone5 { get; set; }
[EmailAddress]
public string EmailAddress { get; set; }
@@ -55,10 +60,10 @@ namespace AyaNova.Models
public string City { get; set; }
public string Region { get; set; }
public string Country { get; set; }
public decimal Latitude { get; set; }
public decimal Longitude { get; set; }
public decimal? Latitude { get; set; }
public decimal? Longitude { get; set; }
public Customer()
{
Tags = new List<string>();