diff options
| author | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-02-05 22:27:17 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <git@r.bdr.sh> | 2025-02-05 22:27:17 +0100 |
| commit | 45829daa856b376b1ab04d415917110b71b1dec5 (patch) | |
| tree | 8e52daed6897b6f489d455736fe256cb9bd90fef /Hotline/Models/ApplicationState.swift | |
| parent | 5c3ea897d062a47bc8cd6255fb8c36bad2f0733f (diff) | |
Apply formatting
Diffstat (limited to 'Hotline/Models/ApplicationState.swift')
| -rw-r--r-- | Hotline/Models/ApplicationState.swift | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Hotline/Models/ApplicationState.swift b/Hotline/Models/ApplicationState.swift index 6e077c5..3e90ed9 100644 --- a/Hotline/Models/ApplicationState.swift +++ b/Hotline/Models/ApplicationState.swift @@ -3,14 +3,14 @@ import SwiftUI @Observable final class ApplicationState { static let shared = ApplicationState() - + var activeHotline: Hotline? = nil var activeServerState: ServerState? = nil - + // Frontmost server window information var activeServerID: UUID? = nil var activeServerBanner: NSImage? = nil var activeServerName: String? = nil - + var cloudKitReady: Bool = false } |