19 lines
395 B
Swift
19 lines
395 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 watchConnectivity = "watchConnectivity"
|
|
|
|
static let cueDefaultSize = "cueDefaultSize"
|
|
}
|