2023-08-04 14:30:10 +07:00
|
|
|
|
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;
|
2023-10-08 12:41:53 +07:00
|
|
|
|
public string? RemarkVertical { get; set; }
|
|
|
|
|
|
public string? RemarkHorizontal { get; set; }
|
2023-08-04 14:30:10 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|