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

11 lines
277 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;
}
}