Iceshrimp.NET/Iceshrimp.Backend/Controllers/Schemas/PaginationQuery.cs
2024-02-21 04:17:39 +01:00

11 lines
No EOL
377 B
C#

using Iceshrimp.Backend.Controllers.Attributes;
using Microsoft.AspNetCore.Mvc;
namespace Iceshrimp.Backend.Controllers.Schemas;
public class PaginationQuery : IPaginationQuery
{
[FromQuery(Name = "max_id")] public string? MaxId { get; set; }
[FromQuery(Name = "min_id")] public string? MinId { get; set; }
[FromQuery(Name = "limit")] public int? Limit { get; set; }
}