Files
server/src/Core/Models/Data/PageOptions.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
252 B
C#
Raw Normal View History

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Core.Models.Data;
2022-08-29 16:06:55 -04:00
2017-12-15 15:23:57 -05:00
public class PageOptions
{
public string ContinuationToken { get; set; }
2018-07-11 14:24:27 -04:00
public int PageSize { get; set; } = 50;
2017-12-15 15:23:57 -05:00
}