Add Tag entity

This commit is contained in:
Hubert Van De Walle 2020-04-12 18:00:32 +02:00
parent 70412f27c5
commit 589c36fa48

11
api/src/entities/Tag.kt Normal file
View File

@ -0,0 +1,11 @@
package be.vandewalleh.entities
import me.liuwj.ktorm.entity.Entity
interface Tag : Entity<Tag> {
companion object : Entity.Factory<Tag>()
val id: Int
var name: String
var note: Note
}