Files
jellyfin-jellyfin-1/Emby.Server.Implementations/IStartupOptions.cs
Joshua M. Boniface b01290013e Merge pull request #5315 from BaronGreenback/FixFor5280Part2
(cherry picked from commit 3c46f10e3d)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
2021-03-08 18:08:20 -05:00

40 lines
1.0 KiB
C#

#pragma warning disable CS1591
#nullable enable
using System;
namespace Emby.Server.Implementations
{
public interface IStartupOptions
{
/// <summary>
/// Gets the value of the --ffmpeg command line option.
/// </summary>
string? FFmpegPath { get; }
/// <summary>
/// Gets the value of the --service command line option.
/// </summary>
bool IsService { get; }
/// <summary>
/// Gets the value of the --package-name command line option.
/// </summary>
string? PackageName { get; }
/// <summary>
/// Gets the value of the --restartpath command line option.
/// </summary>
string? RestartPath { get; }
/// <summary>
/// Gets the value of the --restartargs command line option.
/// </summary>
string? RestartArgs { get; }
/// <summary>
/// Gets the value of the --published-server-url command line option.
/// </summary>
string? PublishedServerUrl { get; }
}
}