Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Air/AirClient/
UpdateInfo.rs

1//! Information about an available update.
2
3#[derive(Debug, Clone)]
4pub struct Struct {
5	pub update_available:bool,
6
7	pub version:String,
8
9	pub download_url:String,
10
11	pub release_notes:String,
12}