1
2
3
4
5
6
7
8
9
10
11
12
13
use super::ditto_attachment::DittoAttachment;

#[derive(Debug)]
pub enum DittoAttachmentFetchEvent {
    Completed {
        attachment: DittoAttachment,
    },
    Progress {
        downloaded_bytes: u64,
        total_bytes: u64,
    },
    Deleted,
}