Nextcloud Login refactoring

This commit is contained in:
VincentMeilinger
2025-05-31 11:12:14 +02:00
parent 5acf3b9c4f
commit 48b31a7997
29 changed files with 1277 additions and 720 deletions

View File

@@ -8,10 +8,10 @@
import Foundation
import SwiftUI
struct Category: Codable, Identifiable, Hashable {
struct CookbookApiCategory: Codable, Identifiable, Hashable {
var id: String { name }
let name: String
let recipe_count: Int
var name: String
var recipe_count: Int
private enum CodingKeys: String, CodingKey {
case name, recipe_count