BotSharp/src/Infrastructure/BotSharp.Abstraction/Utilities/StringIdPagination.cs

15 lines
339 B
C#
Raw Normal View History

2024-08-06 22:43:11 +00:00
namespace BotSharp.Abstraction.Utilities;
2024-08-07 14:57:07 +00:00
public class StringIdPagination : Pagination
2024-08-06 22:43:11 +00:00
{
[JsonPropertyName("start_id")]
public string? StartId { get; set; }
}
2024-08-07 14:57:07 +00:00
public class StringIdPagedItems<T> : PagedItems<T>
2024-08-06 22:43:11 +00:00
{
public new ulong Count { get; set; }
[JsonPropertyName("next_id")]
public string? NextId { get; set; }
}