Files
criminalmindsapi/server/Models/CharacterFilter.cs
T

27 lines
647 B
C#
Raw Normal View History

2022-06-24 10:10:02 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace server.Models
{
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
}
}