9 lines
356 B
C#
9 lines
356 B
C#
|
|
namespace AyaNova.Models
|
|
{
|
|
//physical
|
|
public record AddressRecord(string Name, string Address, string City, string Region, string Country, decimal? Latitude, decimal? Longitude);
|
|
//postal
|
|
public record PostalAddressRecord(string Name, string PostAddress, string PostCity, string PostRegion, string PostCountry, string PostCode);
|
|
}
|