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