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 string Name { get; set; }
|
|
|
|
|
|
public string Year { get; set; }
|
|
|
|
|
|
public string RequestStatus { get; set; }
|
|
|
|
|
|
public string OrganizationName { get; set; }
|
2023-08-09 23:34:25 +07:00
|
|
|
|
public List<InsigniaRequestItem> Items { get; set; }
|
2023-07-19 10:25:54 +07:00
|
|
|
|
}
|
|
|
|
|
|
}
|