Files
server/src/Core/Models/Data/PagedResult.cs

11 lines
230 B
C#
Raw Normal View History

2017-12-15 15:23:57 -05:00
using System.Collections.Generic;
namespace Bit.Core.Models.Data
{
public class PagedResult<T>
{
public List<T> Data { get; set; } = new List<T>();
public string ContinuationToken { get; set; }
}
}