Skip to main content

Mountain/IPC/WindAirCommands/
DownloadResultDTO.rs

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