Skip to content

Commit

Permalink
Merge pull request #27 from alturanft/item_pagination
Browse files Browse the repository at this point in the history
✨ added Pagination
  • Loading branch information
HakoWave authored Jun 5, 2023
2 parents c4e72ea + 820e465 commit 5624074
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Runtime/Internal/models/User_model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ public class Items_model
{
public Items item;
public List<Items> items;
public Pagination pagination;
}
[Serializable]
public class Items
Expand Down Expand Up @@ -67,4 +68,16 @@ public class Items
public int totalListings;

}
[Serializable]
public class Pagination
{
public int current;
public int next;
public bool hasPrevious;
public bool hasNext;
public int perPageCount;
public int currentCount;
public int totalCount;
public int lastPage;
}
}

0 comments on commit 5624074

Please sign in to comment.