package sushi.hardcore.aira.background_service import android.content.Context import androidx.core.app.NotificationManagerCompat class FilesSender( val files: List, context: Context, notificationManager: NotificationManagerCompat, ): FilesTransfer(context, notificationManager, files.size) { val lastChunkSizes = mutableListOf() var nextChunk: ByteArray? = null val msgQueue = mutableListOf() }