Files
EeveeSpotifyReborn/Sources/EeveeSpotify/Lyrics/Models/LyricsSource.swift
T

15 lines
295 B
Swift

import Foundation
enum LyricsSource : Int, CustomStringConvertible {
case genius
case lrclib
case musixmatch
var description : String {
switch self {
case .genius: "Genius"
case .lrclib: "LRCLIB"
case .musixmatch: "Musixmatch"
}
}
}