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