20 lines
447 B
C#
20 lines
447 B
C#
namespace MemberCenter.Application.Models.Profile;
|
|
|
|
public sealed record UserAddressDto(
|
|
Guid Id,
|
|
Guid UserId,
|
|
string Label,
|
|
string RecipientName,
|
|
string RecipientPhone,
|
|
string CountryCode,
|
|
string? PostalCode,
|
|
string? StateRegion,
|
|
string? City,
|
|
string? District,
|
|
string AddressLine1,
|
|
string? AddressLine2,
|
|
string? CompanyName,
|
|
string Usage,
|
|
bool IsDefault,
|
|
string? AddressMetaJson);
|