mirror of
https://github.com/cranci1/Sora.git
synced 2026-05-14 14:01:08 +00:00
18 lines
318 B
Swift
18 lines
318 B
Swift
//
|
|
// SettingsModel.swift
|
|
// Sulfur
|
|
//
|
|
// Created by Dominic on 22.04.25.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
enum SettingDestination: Hashable {
|
|
case general, media, modules, trackers, data, logs, info
|
|
}
|
|
|
|
struct Setting: Identifiable, Hashable {
|
|
let id: Int
|
|
let title: String
|
|
let destination: SettingDestination
|
|
}
|