aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/Configuration/DlnaOptions.cs
blob: 0ebb490a1f64d6123bdd64b0c8ed142bf0973036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace Emby.Dlna.Configuration
{
    public class DlnaOptions
    {
        public bool EnablePlayTo { get; set; }
        public bool EnableServer { get; set; }
        public bool EnableDebugLog { get; set; }
        public bool BlastAliveMessages { get; set; }
        public int ClientDiscoveryIntervalSeconds { get; set; }
        public int BlastAliveMessageIntervalSeconds { get; set; }
        public string DefaultUserId { get; set; }

        public DlnaOptions()
        {
            EnablePlayTo = true;
            EnableServer = true;
            BlastAliveMessages = true;
            ClientDiscoveryIntervalSeconds = 60;
            BlastAliveMessageIntervalSeconds = 1800;
        }
    }
}