| 12345678910111213141516 |
- namespace Application.Features.Api.MyPage.Address.List;
- public sealed record Response(List<Response.Row> List)
- {
- public sealed record Row(
- int ID,
- bool IsDefault,
- string RecipientName,
- string Phone,
- string ZipCode,
- string Address1,
- string Address2,
- DateTime CreatedAt,
- DateTime? UpdatedAt
- );
- }
|