namespace Emby.Server.Implementations
{
public interface IStartupOptions
{
///
/// Gets the value of the --ffmpeg command line option.
///
string FFmpegPath { get; }
///
/// Gets the value of the --service command line option.
///
bool IsService { get; }
///
/// Gets the value of the --noautorunwebapp command line option.
///
bool NoAutoRunWebApp { 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 --plugin-manifest-url command line option.
///
string PluginManifestUrl { get; }
}
}