20 lines
765 B
C#
20 lines
765 B
C#
using BMA.EHR.Domain.Models.MetaData;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace BMA.EHR.Retirement.Service.Requests
|
|
{
|
|
public class RetirementDeceasedAddNotiHigherRequest
|
|
{
|
|
public List<HigherResponse> result { get; set; } = new List<HigherResponse>();
|
|
}
|
|
public class HigherResponse
|
|
{
|
|
public string citizenId { get; set; } = string.Empty;
|
|
public string prefix { get; set; } = string.Empty;
|
|
public string firstName { get; set; } = string.Empty;
|
|
public string lastName { get; set; } = string.Empty;
|
|
public string organizationName { get; set; } = string.Empty;
|
|
public string positionName { get; set; } = string.Empty;
|
|
public string profileId { get; set; } = string.Empty;
|
|
}
|
|
}
|