2014-03-10 17:38:53 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
|
|
|
{
|
|
|
|
|
public class DlnaOptions
|
|
|
|
|
{
|
|
|
|
|
public bool EnablePlayTo { get; set; }
|
2014-03-14 17:09:22 +00:00
|
|
|
|
public bool EnablePlayToDebugLogging { get; set; }
|
2014-03-16 01:41:27 +00:00
|
|
|
|
|
|
|
|
|
public DlnaOptions()
|
|
|
|
|
{
|
|
|
|
|
EnablePlayTo = true;
|
|
|
|
|
}
|
2014-03-10 17:38:53 +00:00
|
|
|
|
}
|
|
|
|
|
}
|