mirror of
https://github.com/bitwarden/server
synced 2025-12-24 20:23:21 +00:00
10 lines
225 B
C#
10 lines
225 B
C#
namespace Bit.Admin.Models;
|
|
|
|
public class CursorPagedModel<T>
|
|
{
|
|
public List<T> Items { get; set; }
|
|
public int Count { get; set; }
|
|
public string Cursor { get; set; }
|
|
public string NextCursor { get; set; }
|
|
}
|