namespace Emby.Server.Implementations
{
    public interface IStartupOptions
    {
        /// 
        /// --ffmpeg
        /// 
        string FFmpegPath { get; }
        /// 
        /// --service
        /// 
        bool IsService { get; }
        /// 
        /// --noautorunwebapp
        /// 
        bool NoAutoRunWebApp { get; }
        /// 
        /// --package-name
        /// 
        string PackageName { get; }
        /// 
        /// --restartpath
        /// 
        string RestartPath { get; }
        /// 
        /// --restartargs
        /// 
        string RestartArgs { get; }
    }
}