mirror of
https://github.com/bitwarden/server
synced 2025-12-19 09:43:25 +00:00
11 lines
342 B
C#
11 lines
342 B
C#
namespace Bit.Api.Models.Public.Response;
|
|
|
|
public class PagedListResponseModel<T>(IEnumerable<T> data, string continuationToken) : ListResponseModel<T>(data)
|
|
where T : IResponseModel
|
|
{
|
|
/// <summary>
|
|
/// A cursor for use in pagination.
|
|
/// </summary>
|
|
public string ContinuationToken { get; set; } = continuationToken;
|
|
}
|