12 lines
277 B
C#
12 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;
|
|||
|
|
}
|
|||
|
|
}
|