Files
raven/server/AyaNova/models/dto/AddressRecord.cs
2021-04-30 19:29:32 +00:00

9 lines
330 B
C#

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);
}