Files
server/src/Admin/Models/CursorPagedModel.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
225 B
C#
Raw Normal View History

2022-08-29 16:06:55 -04:00
namespace Bit.Admin.Models;
public class CursorPagedModel<T>
2018-03-29 23:30:56 -04:00
{
2022-08-29 16:06:55 -04:00
public List<T> Items { get; set; }
public int Count { get; set; }
public string Cursor { get; set; }
public string NextCursor { get; set; }
2018-03-29 23:30:56 -04:00
}