DlnaOptions.cs 845 B

123456789101112131415161718192021222324252627282930313233
  1. #pragma warning disable CS1591
  2. namespace Emby.Dlna.Configuration
  3. {
  4. public class DlnaOptions
  5. {
  6. public DlnaOptions()
  7. {
  8. EnablePlayTo = true;
  9. EnableServer = true;
  10. BlastAliveMessages = true;
  11. SendOnlyMatchedHost = true;
  12. ClientDiscoveryIntervalSeconds = 60;
  13. BlastAliveMessageIntervalSeconds = 1800;
  14. }
  15. public bool EnablePlayTo { get; set; }
  16. public bool EnableServer { get; set; }
  17. public bool EnableDebugLog { get; set; }
  18. public bool BlastAliveMessages { get; set; }
  19. public bool SendOnlyMatchedHost { get; set; }
  20. public int ClientDiscoveryIntervalSeconds { get; set; }
  21. public int BlastAliveMessageIntervalSeconds { get; set; }
  22. public string DefaultUserId { get; set; }
  23. }
  24. }