hrms-api-backend/BMA.EHR.Application/Requests/Commands/UpdatePlacementSalaryRequest.cs

13 lines
396 B
C#

namespace BMA.EHR.Application.Requests.Commands
{
public class UpdatePlacementSalaryRequest
{
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; }
}
}