Add Chapters table

This commit is contained in:
2020-04-19 17:37:27 +02:00
parent e0ffbad105
commit 0dd4886846
3 changed files with 36 additions and 5 deletions
+12
View File
@@ -0,0 +1,12 @@
package be.vandewalleh.entities
import me.liuwj.ktorm.entity.Entity
interface Chapter : Entity<Chapter> {
companion object : Entity.Factory<Chapter>()
val id: Int
var number: Int
var content: String
var note: Note
}