mirror of
https://github.com/yattee/yattee.git
synced 2024-11-10 08:18:19 +00:00
14 lines
226 B
Swift
14 lines
226 B
Swift
import Foundation
|
|
|
|
enum PlaylistVisibility: String, CaseIterable, Identifiable {
|
|
case `public`, unlisted, `private`
|
|
|
|
var id: String {
|
|
rawValue
|
|
}
|
|
|
|
var name: String {
|
|
rawValue.capitalized
|
|
}
|
|
}
|