mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 22:43:07 +03:00
16 lines
409 B
C#
16 lines
409 B
C#
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Model.Session
|
|||
|
|
{
|
|||
|
|
public class ClientCapabilities
|
|||
|
|
{
|
|||
|
|
public List<string> PlayableMediaTypes { get; set; }
|
|||
|
|
public List<string> SupportedCommands { get; set; }
|
|||
|
|
|
|||
|
|
public ClientCapabilities()
|
|||
|
|
{
|
|||
|
|
PlayableMediaTypes = new List<string>();
|
|||
|
|
SupportedCommands = new List<string>();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|