mirror of
https://github.com/bitwarden/server.git
synced 2025-06-15 07:20:49 -05:00
8 lines
159 B
C#
8 lines
159 B
C#
namespace Bit.Core.Models.Data;
|
|
|
|
public class PageOptions
|
|
{
|
|
public string ContinuationToken { get; set; }
|
|
public int PageSize { get; set; } = 50;
|
|
}
|