Vox
Vox copied to clipboard
Expose pagination outside the project
When using library in my project I was not able to use PageBased
pagination class.
Problem is that PageBased
class declared public
, but it is nested inside Pagination
struct which is implicitly internal
.
To get access to PageBased
class I make Pagination
struct public
.