Mountain/IPC/WindAirCommands/DownloadResultDTO.rs
1#![allow(non_snake_case)]
2
3//! Download-completion DTO returned by `DownloadUpdate` and
4//! `DownloadFile`.
5
6use serde::{Deserialize, Serialize};
7
8#[derive(Debug, Clone, Serialize, Deserialize)]
9pub struct Struct {
10 pub success:bool,
11 pub file_path:String,
12 pub file_size:u64,
13 pub checksum:String,
14}