11 lines
No EOL
391 B
C#
11 lines
No EOL
391 B
C#
using Iceshrimp.Backend.Controllers.Shared.Attributes;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Iceshrimp.Backend.Controllers.Shared.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; }
|
|
} |