mirror of
https://github.com/bitwarden/server.git
synced 2025-07-19 08:30:59 -05:00
admin logs
This commit is contained in:
12
src/Admin/Models/CursorPagedModel.cs
Normal file
12
src/Admin/Models/CursorPagedModel.cs
Normal file
@ -0,0 +1,12 @@
|
||||
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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user