aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/SessionCapabilities.cs
blob: 767df8f1c1323b9db807fd0d09f43ed6a44b9543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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>();
        }
    }
}