This commit is contained in:
2021-05-01 00:54:53 +00:00
parent 89d6f18ab0
commit ac0704c6c5
4 changed files with 9 additions and 9 deletions

View File

@@ -2,7 +2,7 @@
namespace AyaNova.Models
{
//physical
public record AddressRecord(string Address, string City, string Region, string Country, decimal? Latitude, decimal? Longitude);
public record AddressRecord(string Name, string Address, string City, string Region, string Country, decimal? Latitude, decimal? Longitude);
//postal
public record PostalAddressRecord(string PostAddress, string PostCity, string PostRegion, string PostCountry, string PostCode);
public record PostalAddressRecord(string Name, string PostAddress, string PostCity, string PostRegion, string PostCountry, string PostCode);
}