aronbalog / Vox

Swift JSON:API client framework
http://jsonapi.org
MIT License
46 stars 19 forks source link

Pagination struct is not visible #22

Open barus opened 5 years ago

barus commented 5 years ago

I've installed Vox using Cocoapods. But when I write: let paginationStrategy = Pagination.PageBased(number: 1, size: 10) the compiler show me the error: 'Use of unresolved identifier 'Pagination'; did you mean 'PaginationData'?'

In my opinion the reason of this issue that Pagination struct is not public. If I change this struct to public - everything is ok.

barus commented 5 years ago

@aronbalog could you change Pagination struct to public?