This commit is contained in:
2021-04-30 19:29:32 +00:00
parent ff00a433a7
commit 79570aa882
2 changed files with 69 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
namespace AyaNova.Models
{
//physical
public record AddressRecord(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);
}