9 lines
237 B
C#
9 lines
237 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>();
|
|
}
|
|
}
|