#pragma warning disable CS1591
namespace Emby.Server.Implementations
{
public interface IStartupOptions
{
///
/// Gets the value of the --ffmpeg command line option.
///
string? FFmpegPath { get; }
///
/// Gets a value 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; }
}
}