hrms-api-backend/BMA.EHR.Application/Requests/InsigniaRequestItem.cs

26 lines
992 B
C#
Raw Normal View History

2023-07-19 10:25:54 +07:00
namespace BMA.EHR.Application.Requests
{
public class InsigniaRequestItem
{
public Guid Id { get; set; }
public string CitizenId { get; set; }
2023-07-19 10:25:54 +07:00
public Guid ProfileId { get; set; }
public string FullName { get; set; }
public string Position { get; set; }
public Guid PosNo { get; set; }
2023-07-19 10:25:54 +07:00
public string Rank { get; set; }
public string Salary { get; set; }
public string LastInsignia { get; set; }
public string RequestInsignia { get; set; }
public string RequestInsigniaShortName { get; set; }
public string Level { get; set; }
public string Status { get; set; }
2023-07-19 10:25:54 +07:00
public bool IsApprove { get; set; }
public DateTime? RequestDate { get; set; }
public string RequestNote { get; set; }
public List<InsigniaRequestDoc>? Docs { get; set; }
2023-07-19 10:25:54 +07:00
public List<MatchingCondition> MatchingConditions { get; set; } = new List<MatchingCondition>();
}
}