namespace LANCommander.Steam.Options;
///
/// Configuration options for SteamCMD service
///
public class SteamCmdOptions
{
///
/// Path to the SteamCMD executable
///
public string? ExecutablePath { get; set; }
///
/// Default install directory for Steam content
///
public string? DefaultInstallDirectory { get; set; }
///
/// Whether to auto-detect the SteamCMD path if not configured
///
public bool AutoDetectPath { get; set; } = true;
}