hrms-api-backend/BMA.EHR.Placement.Service/Requests/PersonAddressRequest.cs
2024-05-16 17:00:47 +07:00

20 lines
796 B
C#

using BMA.EHR.Domain.Models.MetaData;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Placement.Service.Requests
{
public class PersonAddressRequest
{
public bool? RegistrationSame { get; set; }
public string? RegistrationAddress { get; set; }
public string? RegistrationSubDistrictId { get; set; }
public string? RegistrationDistrictId { get; set; }
public string? RegistrationProvinceId { get; set; }
public string? RegistrationZipCode { get; set; }
public string? CurrentAddress { get; set; }
public string? CurrentSubDistrictId { get; set; }
public string? CurrentDistrictId { get; set; }
public string? CurrentProvinceId { get; set; }
public string? CurrentZipCode { get; set; }
}
}