namespace BotSharp.Abstraction.Utilities; public class StringIdPagination : Pagination { [JsonPropertyName("start_id")] public string? StartId { get; set; } } public class StringIdPagedItems : PagedItems { public new ulong Count { get; set; } [JsonPropertyName("next_id")] public string? NextId { get; set; } }