scrap paths directly

This commit is contained in:
Вячеслав 2026-01-01 05:46:42 +05:00
parent 13a076ad79
commit c6a0b39ded
3 changed files with 60 additions and 51 deletions

View file

@ -2,11 +2,11 @@
public record InstallationParts
{
public bool OculusClientExists { get; init; }
public bool PicoClientExists { get; init; }
public bool AndroidAdminExists { get; init; }
public bool AndroidContentExists { get; init; }
public bool WindowsContentExists { get; init; }
public bool WindowsAdminExists { get; init; }
public bool WindowsServerExists { get; init; }
public string? OculusClientPath { get; init; }
public string? PicoClientPath { get; init; }
public string? AndroidAdminPath { get; init; }
public string? AndroidContentPath { get; init; }
public string? WindowsContentPath { get; init; }
public string? WindowsAdminPath { get; init; }
public string? WindowsServerPath { get; init; }
}