namespace JdeScoping.Core.Models.SearchResults;
///
/// Aggregates search metadata and results for export.
///
public class SearchModel
{
public int Id { get; set; }
public string UserName { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public DateTime? SubmitDt { get; set; }
public DateTime? StartDt { get; set; }
public DateTime? EndDt { get; set; }
public bool ExtractMisData { get; set; }
public List Results { get; set; } = [];
public List MisResults { get; set; } = [];
public List MisNonMatchResults { get; set; } = [];
}