mirror of
https://github.com/bitwarden/server
synced 2025-12-25 20:53:16 +00:00
event paging
This commit is contained in:
10
src/Core/Models/Data/PagedResult.cs
Normal file
10
src/Core/Models/Data/PagedResult.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Bit.Core.Models.Data
|
||||
{
|
||||
public class PagedResult<T>
|
||||
{
|
||||
public List<T> Data { get; set; } = new List<T>();
|
||||
public string ContinuationToken { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user