1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-15 07:20:49 -05:00
bitwarden/src/Core/Models/Data/PageOptions.cs
2022-08-29 16:06:55 -04:00

8 lines
159 B
C#

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