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