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