This commit is contained in:
2020-11-10 22:20:37 +00:00
parent 8abac2dcdd
commit 119752be02

View File

@@ -43,7 +43,22 @@ namespace AyaNova.Models
[EmailAddress]
public string EmailAddress { get; set; }
//POSTAL ADDRESS
public string PostAddress { get; set; }
public string PostCity { get; set; }
public string PostRegion { get; set; }
public string PostCountry { get; set; }
public string PostCode { get; set; }
//PHYSICAL ADDRESS
public string Address { get; set; }
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 Customer()
{
Tags = new List<string>();