mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
18 lines
413 B
C#
18 lines
413 B
C#
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>();
|
|
}
|
|
}
|
|
}
|