15 lines
383 B
Kotlin
15 lines
383 B
Kotlin
package at.lockstep.player
|
|
|
|
/**
|
|
* Outcome of bulk folder pairing: counts for UI toasts and debugging.
|
|
*
|
|
* [failed] includes rows with no local file match, validation errors, and rows with no Spotify track id.
|
|
*/
|
|
data class FolderPairingResult(
|
|
val paired: Int,
|
|
val failed: Int,
|
|
val jukeboxRowCount: Int,
|
|
val mp3Count: Int,
|
|
val skippedNoSpotifyTrackId: Int,
|
|
)
|