1
0
mirror of https://github.com/nvllsvm/Audinaut synced 2025-03-13 01:20:05 +01:00
2019-02-27 12:23:10 +11:00

12 lines
377 B
Kotlin

package net.nullsum.audinaut.domain
import android.content.Context
import java.io.Serializable
class Indexes(var shortcuts: MutableList<Artist> = mutableListOf(),
var artists: MutableList<Artist> = mutableListOf(),
var entries: MutableList<MusicDirectory.Entry> = mutableListOf()) : Serializable {
fun sortChildren(context: Context) {
}
}