1
0
mirror of https://github.com/bitwarden/server synced 2025-12-25 20:53:16 +00:00

admin logs

This commit is contained in:
Kyle Spearrin
2018-03-29 23:30:56 -04:00
parent f2ecea0a17
commit d4b4a2b014
6 changed files with 208 additions and 0 deletions

View 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; }
}
}