mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
15 lines
281 B
C#
15 lines
281 B
C#
|
|
namespace MediaBrowser.Model.Configuration
|
|
{
|
|
public class DlnaOptions
|
|
{
|
|
public bool EnablePlayTo { get; set; }
|
|
public bool EnablePlayToDebugLogging { get; set; }
|
|
|
|
public DlnaOptions()
|
|
{
|
|
EnablePlayTo = true;
|
|
}
|
|
}
|
|
}
|