17 lines
366 B
C#
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
|
|
}
|