hrms-api-backend/BMA.EHR.Application/Responses/PassSalaryResponse.cs
2024-04-26 18:03:45 +07:00

20 lines
683 B
C#

namespace BMA.EHR.Application.Responses
{
public class PassSalaryResponse
{
// public bool successful { get; set; }
public List<SalaryDataResponse> result { get; set; } = new();
}
public class SalaryDataResponse
{
public Guid id { get; set; } = Guid.Empty;
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? profileId { get; set; } = string.Empty;
// public Guid? commandId { get; set; } = Guid.Empty;
}
}