UserAddressDto.cs 382 B

1234567891011121314
  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 string? City { get; set; }
  9. public string? PostalCode { get; set; }
  10. public string? AddressDesc { get; set; }
  11. }
  12. }