Recipe To Save
data class RecipeToSave(val id: Long?, val name: String, val category: String, val servings: Int, val directions: String, val ingredients: List<IngredientToSave>)
A recipe that is about to be saved.
A recipe that is about to be saved.