This commit is contained in:
DESKTOP-T0O5CDB\DESK-555BD
2024-11-12 12:58:59 -07:00
parent a671dc1937
commit e59e33bc3b
2 changed files with 13 additions and 10 deletions

View File

@@ -2,13 +2,7 @@
{
public class ReportParameter
{
public List<string> VisibleColumns { get; set; } = new List<string>() {
nameof(GenericReportModel.DataType),
nameof(GenericReportModel.Date),
nameof(GenericReportModel.Odometer),
nameof(GenericReportModel.Description),
nameof(GenericReportModel.Cost),
nameof(GenericReportModel.Notes) };
public List<string> VisibleColumns { get; set; } = new List<string>();
public List<string> ExtraFields { get; set; } = new List<string>();
}
}