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