Allow users to filter records by tags in the consolidated report.

This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-12-07 11:50:59 -07:00
parent 1b736b36f8
commit 32db884620
6 changed files with 73 additions and 25 deletions

View File

@@ -2,7 +2,9 @@
{
public class ReportParameter
{
public List<string> VisibleColumns { get; set; } = new List<string>();
public List<string> ExtraFields { get; set; } = new List<string>();
public List<string> VisibleColumns { get; set; } = new List<string>();
public List<string> ExtraFields { get; set; } = new List<string>();
public TagFilter TagFilter { get; set; } = TagFilter.Exclude;
public List<string> Tags { get; set; } = new List<string>();
}
}