mirror of
https://github.com/bitwarden/server.git
synced 2026-02-08 18:03:11 +08: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