mirror of
https://github.com/bitwarden/server.git
synced 2026-02-09 10:23:10 +08:00
13 lines
318 B
C#
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; }
|
|
}
|