aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Configuration/DlnaOptions.cs
blob: 6dd9a445a8aa942ec545ccb8ec25b7b542f110c6 (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
#pragma warning disable CS1591

namespace Emby.Dlna.Configuration
{
    public class DlnaOptions
    {
        public DlnaOptions()
        {
            EnablePlayTo = true;
            EnableServer = true;
            BlastAliveMessages = true;
            SendOnlyMatchedHost = true;
            ClientDiscoveryIntervalSeconds = 60;
            BlastAliveMessageIntervalSeconds = 1800;
        }

        public bool EnablePlayTo { get; set; }

        public bool EnableServer { get; set; }

        public bool EnableDebugLog { get; set; }

        public bool BlastAliveMessages { get; set; }

        public bool SendOnlyMatchedHost { get; set; }

        public int ClientDiscoveryIntervalSeconds { get; set; }

        public int BlastAliveMessageIntervalSeconds { get; set; }

        public string DefaultUserId { get; set; }
    }
}