namespace Emby.Server.Implementations { /// /// Specifies the contract for server startup options. /// public interface IStartupOptions { /// /// Gets the value of the --ffmpeg command line option. /// string? FFmpegPath { get; } /// /// Gets a value indicating whether to run as service by the --service command line option. /// bool IsService { get; } /// /// Gets the value of the --package-name command line option. /// string? PackageName { get; } /// /// Gets the value of the --restartpath command line option. /// string? RestartPath { get; } /// /// Gets the value of the --restartargs command line option. /// string? RestartArgs { get; } /// /// Gets the value of the --published-server-url command line option. /// string? PublishedServerUrl { get; } } }