Files
server/src/Admin/Models/CursorPagedModel.cs

13 lines
290 B
C#
Raw Normal View History

2018-03-29 23:30:56 -04:00
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; }
}
}