Add new manga statuses

This commit is contained in:
arkon 2022-02-01 12:55:10 -05:00
parent deb2ad04f4
commit 6f52cd9f99
1 changed files with 3 additions and 0 deletions

View File

@ -25,6 +25,9 @@ interface SManga {
const val ONGOING = 1
const val COMPLETED = 2
const val LICENSED = 3
const val PUBLISHING_FINISHED = 4
const val CANCELLED = 5
const val ON_HIATUS = 6
fun create(): SManga {
throw Exception("Stub!")