Response.cs 375 B

12345678910111213141516
  1. namespace Application.Features.Api.MyPage.Address.List;
  2. public sealed record Response(List<Response.Row> List)
  3. {
  4. public sealed record Row(
  5. int ID,
  6. bool IsDefault,
  7. string RecipientName,
  8. string Phone,
  9. string ZipCode,
  10. string Address1,
  11. string Address2,
  12. DateTime CreatedAt,
  13. DateTime? UpdatedAt
  14. );
  15. }