10 lines
193 B
C#
10 lines
193 B
C#
using Common.Dtos.Common;
|
|
|
|
namespace Common.Dtos.Season;
|
|
|
|
public class GetSeasonsRequest : PagedRequest
|
|
{
|
|
public string? Name { get; set; }
|
|
public bool? HideObsolete { get; set; }
|
|
}
|