mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
19 lines
433 B
C#
19 lines
433 B
C#
using LanMountainDesktop.Launcher.Models;
|
|
|
|
namespace LanMountainDesktop.Launcher.Update;
|
|
|
|
internal static class UpdateEngineResults
|
|
{
|
|
public static LauncherResult Failed(string stage, string code, string message)
|
|
{
|
|
return new LauncherResult
|
|
{
|
|
Success = false,
|
|
Stage = stage,
|
|
Code = code,
|
|
Message = message,
|
|
ErrorMessage = message
|
|
};
|
|
}
|
|
}
|