- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace MTWorkHR.Application.Models
- {
- public class UserAddressDto : EntityDto
- {
- public int? CountryId { get; set; }
- public int? CityId { get; set; }
- public string? CityName { get; set; }
- public string? CountryName { get; set; }
- public string? PostalCode { get; set; }
- public string? AddressDesc { get; set; }
- }
- }
|