19 lines
356 B
Swift
19 lines
356 B
Swift
//
|
|
// CookbookProtocols.swift
|
|
// Nextcloud Cookbook iOS Client
|
|
//
|
|
// Created by Vincent Meilinger on 11.05.24.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
|
|
protocol CookbookApiRecipe {
|
|
func toRecipeStub() -> RecipeStub
|
|
}
|
|
|
|
protocol CookbookApiRecipeDetail: Codable {
|
|
func toRecipe() -> Recipe
|
|
static func fromRecipe(_ recipe: Recipe) -> CookbookApiRecipeDetail
|
|
}
|