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

20 lines
632 B
C#
Raw Permalink Normal View History

2023-07-19 10:25:54 +07:00
using System.Collections.Generic;
namespace BMA.EHR.Application.Requests
{
public class InsigniaResults
{
public Guid PeriodId { get; set; }
public Guid? RequestId { get; set; }
public string? Name { get; set; }
public int Year { get; set; }
public int Round { get; set; }
public string RequestNote { get; set; }
2023-07-19 10:25:54 +07:00
public string RequestStatus { get; set; }
public string OrganizationName { get; set; }
public string? Document { get; set; }
public bool IsLock { get; set; }
public List<InsigniaRequestItem> Items { get; set; }
2023-07-19 10:25:54 +07:00
}
}