hrms-api-backend/BMA.EHR.Application/Responses/PassSalaryResponse.cs

29 lines
988 B
C#
Raw Permalink Normal View History

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;
2024-06-14 17:26:15 +07:00
public string? prefix { get; set; } = string.Empty;
public string firstName { get; set; } = string.Empty;
public string lastName { get; set; } = string.Empty;
2024-04-26 18:03:45 +07:00
public string? profileId { get; set; } = string.Empty;
// public Guid? commandId { get; set; } = Guid.Empty;
2024-06-17 15:02:54 +07:00
2024-06-18 13:54:19 +07:00
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; }
}
}