mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 07:03:11 +08:00
9 lines
181 B
C#
9 lines
181 B
C#
namespace Bit.Core.Models.Data
|
|
{
|
|
public class PageOptions
|
|
{
|
|
public string ContinuationToken { get; set; }
|
|
public int PageSize { get; set; } = 50;
|
|
}
|
|
}
|