1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-12 22:10:50 -05:00
bitwarden/src/Admin/Models/CursorPagedModel.cs
Kyle Spearrin d4b4a2b014 admin logs
2018-03-29 23:30:56 -04:00

13 lines
290 B
C#

using System.Collections.Generic;
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; }
}
}