Files
Backend-Api/Query/AdminReports/Models/WorkshopWithRollCallServiceQueryParameters.cs
2025-01-07 17:49:46 +03:30

17 lines
366 B
C#

namespace Query.AdminReports.Models;
public class WorkshopWithRollCallServiceQueryParameters
{
public string WorkshopName { get; set; }
public long WorkshopId { get; set; }
public string RollCallServiceType { get; set; }
public FilterMode FilterMode { get; set; } = FilterMode.All;
}
public enum FilterMode
{
All,
Active,
DeActive
}