namespace AIStudio.Tools.Rust; /// /// The response of the update check. /// /// True if an update is available. /// The new version, when available. /// The changelog of the new version, when available. public readonly record struct UpdateResponse( bool UpdateIsAvailable, bool Error, string NewVersion, string Changelog );