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.

8 lines
159 B
C#
Raw Normal View History

2017-12-15 15:23:57 -05:00
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
}