aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/DlnaOptions.cs
blob: 893e377faf6c27221d1fff5a8909fe7083cf9944 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace MediaBrowser.Model.Configuration
{
    public class DlnaOptions
    {
        public bool EnablePlayTo { get; set; }
        public bool EnableDebugLogging { get; set; }
        public int ClientDiscoveryIntervalSeconds { get; set; }

        public DlnaOptions()
        {
            EnablePlayTo = true;
            ClientDiscoveryIntervalSeconds = 30;
        }
    }
}