mirror of
https://github.com/bitwarden/server
synced 2025-12-25 20:53:16 +00: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