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

9 lines
181 B
C#
Raw Normal View History

2017-12-15 15:23:57 -05:00
namespace Bit.Core.Models.Data
{
public class PageOptions
{
public string ContinuationToken { get; set; }
2018-07-11 14:24:27 -04:00
public int PageSize { get; set; } = 50;
2017-12-15 15:23:57 -05:00
}
}