AI-Studio/app/MindWork AI Studio/Tools/Rust/UpdateResponse.cs
2024-09-01 20:10:03 +02:00

14 lines
470 B
C#

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