UserAddressDto.cs 476 B

12345678910111213141516
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace MTWorkHR.Application.Models
  4. {
  5. public class UserAddressDto : EntityDto
  6. {
  7. public int? CountryId { get; set; }
  8. public int? CityId { get; set; }
  9. public string? CityName { get; set; }
  10. public string? CountryName { get; set; }
  11. public string? PostalCode { get; set; }
  12. public string? AddressDesc { get; set; }
  13. }
  14. }