aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IStartupOptions.cs
blob: 6e915de3d1d72344a03ce5cabe62b010aea8d6bc (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
29
30
31
32
33
34
35
namespace Emby.Server.Implementations
{
    public interface IStartupOptions
    {
        /// <summary>
        /// --ffmpeg
        /// </summary>
        string FFmpegPath { 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; }
    }
}