19 lines
364 B
Swift
19 lines
364 B
Swift
//
|
|
// SettingsModels.swift
|
|
// Ferrite
|
|
//
|
|
// Created by Brian Dashore on 3/20/23.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
enum DefaultAction: Codable, CaseIterable, Hashable {
|
|
static var allCases: [DefaultAction] {
|
|
[.none, .share, .kodi, .custom(name: "", listId: "")]
|
|
}
|
|
|
|
case none
|
|
case share
|
|
case kodi
|
|
case custom(name: String, listId: String)
|
|
}
|