Skip to main content

Mountain/IPC/WindAirCommands/
DownloadResultDTO.rs

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