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

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