Initial files and some experimenting
This commit is contained in:
14
src/main/kotlin/model/Patron.kt
Normal file
14
src/main/kotlin/model/Patron.kt
Normal file
@@ -0,0 +1,14 @@
|
||||
package codes.kalar.model
|
||||
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
@Serializable
|
||||
data class Patron(
|
||||
val id: Long,
|
||||
val name: String,
|
||||
val hasGoodStanding: Boolean,
|
||||
val feeTotal: Long,
|
||||
val isArchived: Boolean,
|
||||
val lastLogin: String?,
|
||||
val password: String?,
|
||||
)
|
||||
Reference in New Issue
Block a user