1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-16 07:50:49 -05:00
bitwarden/src/Admin/Models/CursorPagedModel.cs
2022-08-29 16:06:55 -04:00

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; }
}