Skip to content

Commit

Permalink
fix: Moved Paginated models to new module
Browse files Browse the repository at this point in the history
  • Loading branch information
tallnato committed Dec 3, 2019
1 parent dbeb9fa commit 8072fc1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package tech.youclap.klap.ktor.model.paginated
package tech.youclap.klap.core.model.paginated

data class Data(
val per: Int,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package tech.youclap.klap.ktor.model.paginated
package tech.youclap.klap.core.model.paginated

data class Page(
val position: Position,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package tech.youclap.klap.ktor.model.paginated
package tech.youclap.klap.core.model.paginated

data class Paginated<T>(
val data: T,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package tech.youclap.klap.ktor.model.paginated
package tech.youclap.klap.core.model.paginated

data class Position(
val current: Int,
Expand Down

0 comments on commit 8072fc1

Please sign in to comment.