15 lines
339 B
C#
15 lines
339 B
C#
namespace BotSharp.Abstraction.Utilities;
|
|
|
|
public class StringIdPagination : Pagination
|
|
{
|
|
[JsonPropertyName("start_id")]
|
|
public string? StartId { get; set; }
|
|
}
|
|
|
|
public class StringIdPagedItems<T> : PagedItems<T>
|
|
{
|
|
public new ulong Count { get; set; }
|
|
|
|
[JsonPropertyName("next_id")]
|
|
public string? NextId { get; set; }
|
|
} |