17 lines
655 B
C#
17 lines
655 B
C#
|
|
namespace BMA.EHR.Application.Responses.Profiles
|
|||
|
|
{
|
|||
|
|
public class GetProfileSalaryDto
|
|||
|
|
{
|
|||
|
|
public DateTime DateAffect { get; set; }
|
|||
|
|
public string Position { get; set; } = string.Empty;
|
|||
|
|
public string Root { get; set; } = string.Empty;
|
|||
|
|
public string Child1 { get; set; } = string.Empty;
|
|||
|
|
public string Child2 { get; set; } = string.Empty;
|
|||
|
|
public string Child3 { get; set; } = string.Empty;
|
|||
|
|
public string Child4 { get; set; } = string.Empty;
|
|||
|
|
public int Age { get; set; } = 0;
|
|||
|
|
public int Amount { get; set; } = 0;
|
|||
|
|
public string Remark { get; set; } = string.Empty;
|
|||
|
|
}
|
|||
|
|
}
|