Created
September 3, 2019 12:33
-
-
Save ntakouris/4068dc5ff868ccdfb5e92bc100ac99eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class PagedResponse<T> | |
| { | |
| public PagedResponse(){} | |
| public PagedResponse(IEnumerable<T> data) | |
| { | |
| Data = data; | |
| } | |
| public IEnumerable<T> Data { get; set; } | |
| public int? PageNumber { get; set; } | |
| public int? PageSize { get; set; } | |
| public string NextPage { get; set; } | |
| public string PreviousPage { get; set; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment