Add some missing classes

This commit is contained in:
Syer10
2022-11-17 19:47:59 -05:00
parent 40fb2e20a9
commit 7b2a54d2bc
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package ca.gosyer.jui.ui.reader.model
sealed class ReaderItem

View File

@@ -0,0 +1,12 @@
/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
package ca.gosyer.jui.ui.reader.model
data class ReaderPageSeparator(
val previousChapter: ReaderChapter?,
val nextChapter: ReaderChapter?
) : ReaderItem()