2022-06-24 12:22:40 -05:00
|
|
|
namespace server.Models
|
2022-06-24 10:10:02 -05:00
|
|
|
{
|
|
|
|
|
public class CharacterFilter
|
|
|
|
|
{
|
2022-06-24 11:35:33 -05:00
|
|
|
/// <summary>
|
|
|
|
|
/// Used to filter characters by their name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? Name { get; set; } = null;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Used to filter characters by the actor's name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? ActorName { get; set; } = null;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Used to filter characters by a season.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int? Season { get; set; } = null;
|
2022-06-24 10:10:02 -05:00
|
|
|
}
|
|
|
|
|
}
|