#pragma warning disable CS1591
using System;
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 --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.
///
Uri PublishedServerUrl { get; }
}
}