mirror of
https://github.com/oxen-io/session-android.git
synced 2024-12-11 10:44:21 +00:00
20 lines
472 B
Java
20 lines
472 B
Java
package org.thoughtcrime.securesms.events;
|
|
|
|
|
|
import androidx.annotation.NonNull;
|
|
|
|
import org.thoughtcrime.securesms.attachments.Attachment;
|
|
|
|
public class PartProgressEvent {
|
|
|
|
public final Attachment attachment;
|
|
public final long total;
|
|
public final long progress;
|
|
|
|
public PartProgressEvent(@NonNull Attachment attachment, long total, long progress) {
|
|
this.attachment = attachment;
|
|
this.total = total;
|
|
this.progress = progress;
|
|
}
|
|
}
|