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

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

13 lines
318 B
C#
Raw Normal View History

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Admin.Models;
2022-08-29 16:06:55 -04:00
public class CursorPagedModel<T>
2018-03-29 23:30:56 -04:00
{
public List<T> Items { get; set; }
public int Count { get; set; }
public string Cursor { get; set; }
public string NextCursor { get; set; }
}