123456789101112131415161718192021 |
- using System.Collections.Generic;
- namespace MediaBrowser.Model.Session
- {
- public class SessionCapabilities
- {
- public List<string> PlayableMediaTypes { get; set; }
- public List<string> SupportedCommands { get; set; }
- public bool SupportsMediaControl { get; set; }
- public string MessageCallbackUrl { get; set; }
- public SessionCapabilities()
- {
- PlayableMediaTypes = new List<string>();
- SupportedCommands = new List<string>();
- }
- }
- }
|