Files
Moonlight/Moonlight/App/ApiClients/Modrinth/Resources/Pagination.cs
2023-06-16 20:24:03 +02:00

14 lines
367 B
C#

using Newtonsoft.Json;
namespace Moonlight.App.ApiClients.Modrinth.Resources;
public class Pagination
{
[JsonProperty("hits")] public Project[] Hits { get; set; }
[JsonProperty("offset")] public long Offset { get; set; }
[JsonProperty("limit")] public long Limit { get; set; }
[JsonProperty("total_hits")] public long TotalHits { get; set; }
}