aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/SessionCapabilities.cs
blob: 290b0e4d47ea82cc88445e1c0422a928bb9677d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Collections.Generic;

namespace MediaBrowser.Model.Session
{
    public class SessionCapabilities
    {
        public List<string> PlayableMediaTypes { get; set; }

        public List<string> SupportedCommands { get; set; }

        public SessionCapabilities()
        {
            PlayableMediaTypes = new List<string>();
            SupportedCommands = new List<string>();
        }
    }
}