1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-21 13:05:11 -05:00
bitwarden/src/Core/Models/Data/PageOptions.cs
2017-12-15 15:23:57 -05:00

9 lines
182 B
C#

namespace Bit.Core.Models.Data
{
public class PageOptions
{
public string ContinuationToken { get; set; }
public int PageSize { get; set; } = 100;
}
}