mirror of
https://github.com/danbee/persephone
synced 2025-03-04 08:39:11 +00:00
20 lines
510 B
Swift
20 lines
510 B
Swift
//
|
|
// Notification.swift
|
|
// Persephone
|
|
//
|
|
// Created by Daniel Barber on 2019/2/08.
|
|
// Copyright © 2019 Dan Barber. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
extension Notification {
|
|
static let stateChanged = Notification.Name("MPDClientStateChanged")
|
|
static let queueChanged = Notification.Name("MPDClientQueueChanged")
|
|
static let queuePosChanged = Notification.Name("MPDClientQueuePosChanged")
|
|
|
|
static let stateKey = "state"
|
|
static let queueKey = "queue"
|
|
static let queuePosKey = "song"
|
|
}
|