Add basic UI element as POC.
This commit is contained in:
parent
1afd3bc02b
commit
6876ad7052
12 changed files with 606 additions and 9 deletions
17
app/src/main/java/com/pixelized/lexique/model/Lexicon.kt
Normal file
17
app/src/main/java/com/pixelized/lexique/model/Lexicon.kt
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
package com.pixelized.lexique.model
|
||||
|
||||
import android.net.Uri
|
||||
|
||||
data class Lexicon(
|
||||
val name: String?,
|
||||
val diminutive: String?,
|
||||
val gender: Gender = Gender.UNDETERMINED,
|
||||
val race: String?,
|
||||
val portrait: List<Uri>,
|
||||
val description: String?,
|
||||
val history: String?,
|
||||
) {
|
||||
enum class Gender {
|
||||
MALE, FEMALE, UNDETERMINED
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue