hrms-api-backend/BMA.EHR.Application/Responses/PassSalaryResponse.cs
2024-06-18 13:54:19 +07:00

28 lines
988 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;
public DateTime? birthDate { get; set; }
public string? organization { get; set; }
public string? positionName { get; set; }
public string? positionLevel { get; set; }
public string? positionType { get; set; }
public string? positionNumber { get; set; }
}
}