Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindAirCommands/
UpdateInfoDTO.rs

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