namespace CMSMicroservice.Application.UserAddressCQ.Queries.GetCustomerAddresses; public class GetCustomerAddressesQueryResponse { public List Addresses { get; set; } = new(); } public class CustomerAddressModel { public long Id { get; set; } public string Title { get; set; } = string.Empty; public string Address { get; set; } = string.Empty; public string PostalCode { get; set; } = string.Empty; public bool IsDefault { get; set; } public long CityId { get; set; } public string CityName { get; set; } = string.Empty; public string ProvinceName { get; set; } = string.Empty; }