211ae30188
Addressed further review comments. Removed unnecessary .ParsedStartupOptions namespace. Removed DataDir, ConfigDir and LogDir from Interface file as not necessary.
41 lines
835 B
C#
41 lines
835 B
C#
namespace Emby.Server.Implementations
|
|
{
|
|
public interface IStartupOptions
|
|
{
|
|
/// <summary>
|
|
/// --ffmpeg
|
|
/// </summary>
|
|
string FFmpegPath { get; }
|
|
|
|
/// <summary>
|
|
/// --ffprobe
|
|
/// </summary>
|
|
string FFprobePath { get; }
|
|
|
|
/// <summary>
|
|
/// --service
|
|
/// </summary>
|
|
bool IsService { get; }
|
|
|
|
/// <summary>
|
|
/// --noautorunwebapp
|
|
/// </summary>
|
|
bool NoAutoRunWebApp { get; }
|
|
|
|
/// <summary>
|
|
/// --package-name
|
|
/// </summary>
|
|
string PackageName { get; }
|
|
|
|
/// <summary>
|
|
/// --restartpath
|
|
/// </summary>
|
|
string RestartPath { get; }
|
|
|
|
/// <summary>
|
|
/// --restartargs
|
|
/// </summary>
|
|
string RestartArgs { get; }
|
|
}
|
|
}
|