namespace AnsonBot.Core; public class DockerOptions { /// Name or ID of the Palworld server container. public string ContainerName { get; set; } = "palworld"; /// Executable invoked inside the container to issue RCON commands. public string RconCliPath { get; set; } = "rcon-cli"; /// /// Docker daemon endpoint. Leave null to use the local default /// (unix:///var/run/docker.sock on Linux, npipe://./pipe/docker_engine on Windows). /// public string? DaemonUri { get; set; } public int TimeoutSeconds { get; set; } = 10; }