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