24 lines
548 B
Swift
24 lines
548 B
Swift
//
|
|
// AppStorage.swift
|
|
// OnCue
|
|
//
|
|
// Created by Pradyun Setti on 23/06/2024.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public struct Preferences {
|
|
static let teleSeparator = "teleSeparator"
|
|
static let teleDefaultSize = "teleDefaultSize"
|
|
static let teleAutoScroll = "teleAutoScroll"
|
|
static let teleAutoScrollSpeed = "teleAutoScrollSpeed"
|
|
|
|
static let watchConnectivity = "watchConnectivity"
|
|
|
|
static let cueDefaultSize = "cueDefaultSize"
|
|
|
|
static let themeColour = "themeColour"
|
|
|
|
static let showTimers = "showTimers"
|
|
}
|