| | | 1 | | #nullable disable |
| | | 2 | | #pragma warning disable CS1591 |
| | | 3 | | |
| | | 4 | | using System; |
| | | 5 | | using System.Collections.Generic; |
| | | 6 | | using Jellyfin.Data.Enums; |
| | | 7 | | using MediaBrowser.Model.Dlna; |
| | | 8 | | |
| | | 9 | | namespace MediaBrowser.Model.Session |
| | | 10 | | { |
| | | 11 | | public class ClientCapabilities |
| | | 12 | | { |
| | | 13 | | public ClientCapabilities() |
| | | 14 | | { |
| | 15 | 15 | | PlayableMediaTypes = Array.Empty<MediaType>(); |
| | 15 | 16 | | SupportedCommands = Array.Empty<GeneralCommandType>(); |
| | 15 | 17 | | SupportsPersistentIdentifier = true; |
| | 15 | 18 | | } |
| | | 19 | | |
| | | 20 | | public IReadOnlyList<MediaType> PlayableMediaTypes { get; set; } |
| | | 21 | | |
| | | 22 | | public IReadOnlyList<GeneralCommandType> SupportedCommands { get; set; } |
| | | 23 | | |
| | | 24 | | public bool SupportsMediaControl { get; set; } |
| | | 25 | | |
| | | 26 | | public bool SupportsPersistentIdentifier { get; set; } |
| | | 27 | | |
| | | 28 | | public DeviceProfile DeviceProfile { get; set; } |
| | | 29 | | |
| | | 30 | | public string AppStoreUrl { get; set; } |
| | | 31 | | |
| | | 32 | | public string IconUrl { get; set; } |
| | | 33 | | } |
| | | 34 | | } |