mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
19 lines
463 B
C#
19 lines
463 B
C#
namespace LanMountainDesktop.Launcher.Deployment;
|
|
|
|
internal sealed class HostResolutionResult
|
|
{
|
|
public bool Success { get; init; }
|
|
|
|
public string? ResolvedHostPath { get; init; }
|
|
|
|
public string? ResolutionSource { get; init; }
|
|
|
|
public string AppRoot { get; init; } = string.Empty;
|
|
|
|
public string? ExplicitAppRoot { get; init; }
|
|
|
|
public bool DevModeConfigIgnored { get; init; }
|
|
|
|
public List<string> SearchedPaths { get; init; } = [];
|
|
}
|