Files
sockeye/server/models/dto/AddressRecord.cs
2022-12-16 06:01:23 +00:00

9 lines
378 B
C#

namespace Sockeye.Models
{
//physical
public record AddressRecord(string Name, string Address, string City, string Region, string Country, string AddressPostal, decimal? Latitude, decimal? Longitude);
//postal
public record PostalAddressRecord(string Name, string PostAddress, string PostCity, string PostRegion, string PostCountry, string PostCode);
}