Skip to content

Commit

Permalink
Merge pull request #455 from Shikkanime/dev
Browse files Browse the repository at this point in the history
Move UUIDPaginationKeyCache.kt to data class
  • Loading branch information
Ziedelth authored May 13, 2024
2 parents 01633af + 4fe4a2b commit 2e3bfa6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package fr.shikkanime.caches

import java.util.*

open class UUIDPaginationKeyCache(
open val uuid: UUID,
open val page: Int,
open val limit: Int,
data class UUIDPaginationKeyCache(
val uuid: UUID,
val page: Int,
val limit: Int,
)

0 comments on commit 2e3bfa6

Please sign in to comment.