Iceshrimp.NET/Iceshrimp.Backend/Controllers/Schemas/PaginationQuery.cs
2024-02-18 02:09:56 +01:00

10 lines
No EOL
310 B
C#

using Microsoft.AspNetCore.Mvc;
namespace Iceshrimp.Backend.Controllers.Schemas;
public class PaginationQuery
{
[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; }
}