Files
EeveeSpotifyReborn/Sources/EeveeSpotify/Lyrics/Models/LyricsLoadingState.swift
T
2024-08-07 11:37:45 +03:00

9 lines
180 B
Swift

import Foundation
struct LyricsLoadingState {
var wasRomanized = false
var areEmpty = false
var fallbackError: LyricsError? = nil
var loadedSuccessfully = false
}