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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
173 B
C#
Raw Normal View History

namespace Bit.Core.Models.Data;
2022-08-29 16:06:55 -04:00
2017-12-15 15:23:57 -05:00
public class PagedResult<T>
{
public List<T> Data { get; set; } = new List<T>();
public string ContinuationToken { get; set; }
}