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

13 lines
383 B
C#

namespace BMA.EHR.Application.Responses
{
public class PlacementSalaryResponse
{
public double SalaryAmount { get; set; } = 0;
public double PositionSalaryAmount { get; set; } = 0;
public double MonthSalaryAmount { get; set; } = 0;
public string? RemarkVertical { get; set; }
public string? RemarkHorizontal { get; set; }
}
}