9 lines
148 B
Kotlin
9 lines
148 B
Kotlin
|
|
package xyz.pixelatedw.recipe.data
|
||
|
|
|
||
|
|
data class Recipe(
|
||
|
|
val title: String,
|
||
|
|
val tags: List<String>,
|
||
|
|
val lastModified: Long,
|
||
|
|
val content: String
|
||
|
|
)
|