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}