aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IStartupOptions.cs
blob: b7bcaace1bffac7a3a4ab4b50519f0b2c366a9ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace Emby.Server.Implementations
{
    /// <summary>
    /// Specifies the contract for server startup options.
    /// </summary>
    public interface IStartupOptions
    {
        /// <summary>
        /// Gets the value of the --ffmpeg command line option.
        /// </summary>
        string? FFmpegPath { get; }

        /// <summary>
        /// Gets a value indicating whether to run as service by 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 --published-server-url command line option.
        /// </summary>
        string? PublishedServerUrl { get; }
    }
}