- using MTWorkHR.Identity.Entities;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace MTWorkHR.Application.Models
- {
- public class UserAddressDto
- {
- public int CountryId { get; set; }
- public string City { get; set; }
- public string PostalCode { get; set; }
- public string AddressDesc { get; set; }
- }
- }
|