using System.Collections.Generic; namespace BMA.EHR.Application.Requests { public class InsigniaResultSet { public Guid ProfileId { get; set; } public string Prefix { get; set; } public string FullName { get; set; } public string Position { get; set; } public string Rank { get; set; } public string GovAge { get; set; } public double? Salary { get; set; } public string LastInsignia { get; set; } public Guid? LastInsigniaId { get; set; } public Guid PosNo { get; set; } public InsigniaItem RequestInsignia { get; set; } public string Gender { get; set; } public int Seq { get; set; } public List MatchingConditions { get; set; } = new List(); } public class MatchingCondition { public string Condition { get; set; } = ""; public string Result { get; set; } = ""; } }