Files
server/src/Admin/Models/CursorPagedModel.cs
2025-07-08 10:25:59 -04:00

13 lines
318 B
C#

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
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; }
}