1
0
mirror of https://github.com/yattee/yattee.git synced 2025-01-06 01:20:31 +05:30
yattee/Model/PlaylistVisibility.swift
2021-07-08 17:16:42 +02:00

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
}
}