velody/packages/apple/VelodyPlayback/Sources/VelodyPlayback/PlaybackRepeatMode.swift
2026-05-28 14:05:15 +02:00

19 lines
337 B
Swift

import Foundation
public enum PlaybackRepeatMode: String, Codable, CaseIterable, Hashable, Sendable {
case off
case all
case one
public var nextMode: PlaybackRepeatMode {
switch self {
case .off:
.all
case .all:
.one
case .one:
.off
}
}
}