UserAddressDto.cs 400 B

123456789101112131415
  1. using MTWorkHR.Identity.Entities;
  2. using System.ComponentModel.DataAnnotations;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace MTWorkHR.Application.Models
  5. {
  6. public class UserAddressDto
  7. {
  8. public int CountryId { get; set; }
  9. public string City { get; set; }
  10. public string PostalCode { get; set; }
  11. public string AddressDesc { get; set; }
  12. }
  13. }