Files
lubelog/Models/Report/ReportParameter.cs
DESKTOP-T0O5CDB\DESK-555BD e59e33bc3b fix bug.
2024-11-12 12:58:59 -07:00

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>();
}
}