mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-11 04:37:03 -06:00
11 lines
378 B
C#
11 lines
378 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class ReportParameter
|
|
{
|
|
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>();
|
|
}
|
|
}
|