mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-23 15:30:56 -04: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;
|
|
}
|
|
}
|
|
}
|