diff --git a/server/AyaNova/models/Customer.cs b/server/AyaNova/models/Customer.cs index dfa8e09b..cfcfef82 100644 --- a/server/AyaNova/models/Customer.cs +++ b/server/AyaNova/models/Customer.cs @@ -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();