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