Skip to main content

Mountain/Air/AirServiceTypesStub/
UpdateCheckResponse.rs

1#![allow(non_snake_case)]
2
3//! `CheckForUpdates` response DTO.
4
5#[derive(Debug, Clone)]
6pub struct Struct {
7	pub update_available:bool,
8	pub version:String,
9	pub download_url:String,
10	pub release_notes:String,
11	pub error:String,
12}