Skip to main content

Mountain/IPC/WindAirCommands/
UpdateInfoDTO.rs

1
2//! Update-availability DTO returned by `CheckForUpdates`.
3
4use serde::{Deserialize, Serialize};
5
6#[derive(Debug, Clone, Serialize, Deserialize)]
7pub struct Struct {
8	pub update_available:bool,
9
10	pub version:String,
11
12	pub download_url:String,
13
14	pub release_notes:String,
15}