mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
13 lines
421 B
C#
13 lines
421 B
C#
namespace LanMountainDesktop.Services.Plonds;
|
|
|
|
internal sealed record PlondsPrepareResult(
|
|
bool Success,
|
|
PlondsPreparedPackage? Package,
|
|
string? ErrorMessage,
|
|
bool RequiresUiHandling)
|
|
{
|
|
public static PlondsPrepareResult Prepared(PlondsPreparedPackage package) => new(true, package, null, false);
|
|
|
|
public static PlondsPrepareResult FailedForUi(string message) => new(false, null, message, true);
|
|
}
|