package xyz.pixelatedw.recipe.data import android.graphics.Bitmap data class Recipe( val title: String, val tags: List, val previews: List, val lastModified: Long, val content: String ) { fun mainImage(): Bitmap? { return this.previews.getOrNull(0) } }