1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-23 05:55:13 -05:00
bitwarden/src/Core/Models/Data/PageOptions.cs
2018-07-11 14:24:27 -04:00

9 lines
181 B
C#

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