SeanutSwift/Sources/CustomTypes.swift

14 lines
279 B
Swift
Raw Normal View History

2024-02-16 14:58:42 -05:00
// CustomTypes.swift
import ArgumentParser
enum MediaType: String, ExpressibleByArgument {
case book, movie, season, series, playlist, album, artist
}
extension MediaType: CustomStringConvertible {
var description: String {
return rawValue.capitalized
}
}