Files
MilkyShots/Butter/Dtos/Person/PersonSearchParametersDto.cs
T
REDCODE bd924f9e23 feat(api): add sort parameters to pagination DTOs
Add SortBy (string?) and SortAsc (bool) to PagedParametersDto base class.
Create PersonSearchParametersDto extending PagedSearchParametersDto.

Closes #84
2026-07-11 13:07:41 +02:00

8 lines
195 B
C#

namespace Butter.Dtos.Person;
/// <summary>
/// Search and filter parameters for person (cosplayer) queries.
/// </summary>
public class PersonSearchParametersDto : PagedSearchParametersDto {
}