mirror of
https://github.com/yattee/yattee.git
synced 2025-01-07 18:10:33 +05:30
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
|
||
|
}
|
||
|
}
|