14 lines
415 B
C#
14 lines
415 B
C#
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; }
|
|
public List<InsigniaRequestItem> Items { get; set; }
|
|
}
|
|
}
|