Add meta info for clients to store custom data in (#113)

* Add meta info for clients to store custom data in

* PR comments

* Really update migration
This commit is contained in:
Syer10
2021-05-30 04:18:08 +04:30
committed by GitHub
parent e69dbbf418
commit 6c22fe193a
14 changed files with 167 additions and 11 deletions
@@ -39,4 +39,6 @@ data class ChapterDataClass(
/** total chapter count, used to calculate if there's a next and prev chapter */
val chapterCount: Int? = null,
/** used to store client specific values */
val meta: Map<String, String> = emptyMap(),
)