mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
28 lines
484 B
Swift
28 lines
484 B
Swift
//
|
|
// PreferencesActions.swift
|
|
// Persephone
|
|
//
|
|
// Created by Daniel Barber on 2019/4/28.
|
|
// Copyright © 2019 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
import ReSwift
|
|
|
|
struct UpdateServerHost: Action {
|
|
var host: String?
|
|
}
|
|
|
|
struct UpdateServerPort: Action {
|
|
var port: Int?
|
|
}
|
|
|
|
struct UpdateMPDLibraryDir: Action {
|
|
var mpdLibraryDir: String?
|
|
}
|
|
|
|
struct UpdateFetchMissingArtworkFromInternet: Action {
|
|
var fetchMissingArtworkFromInternet: Bool
|
|
}
|
|
|
|
struct SavePreferences: Action {}
|