mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-01 05:18:27 +01:00
fix SA1513/SA1516
This commit is contained in:
@@ -13,15 +13,19 @@ namespace MediaBrowser.Model.Session
|
||||
public string[] SupportedCommands { get; set; }
|
||||
|
||||
public bool SupportsMediaControl { get; set; }
|
||||
|
||||
public bool SupportsContentUploading { get; set; }
|
||||
|
||||
public string MessageCallbackUrl { get; set; }
|
||||
|
||||
public bool SupportsPersistentIdentifier { get; set; }
|
||||
|
||||
public bool SupportsSync { get; set; }
|
||||
|
||||
public DeviceProfile DeviceProfile { get; set; }
|
||||
|
||||
public string AppStoreUrl { get; set; }
|
||||
|
||||
public string IconUrl { get; set; }
|
||||
|
||||
public ClientCapabilities()
|
||||
|
||||
@@ -39,8 +39,11 @@ namespace MediaBrowser.Model.Session
|
||||
public Guid ControllingUserId { get; set; }
|
||||
|
||||
public int? SubtitleStreamIndex { get; set; }
|
||||
|
||||
public int? AudioStreamIndex { get; set; }
|
||||
|
||||
public string MediaSourceId { get; set; }
|
||||
|
||||
public int? StartIndex { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -105,6 +105,7 @@ namespace MediaBrowser.Model.Session
|
||||
public RepeatMode RepeatMode { get; set; }
|
||||
|
||||
public QueueItem[] NowPlayingQueue { get; set; }
|
||||
|
||||
public string PlaylistItemId { get; set; }
|
||||
}
|
||||
|
||||
@@ -118,6 +119,7 @@ namespace MediaBrowser.Model.Session
|
||||
public class QueueItem
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
|
||||
public string PlaylistItemId { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -62,6 +62,7 @@ namespace MediaBrowser.Model.Session
|
||||
public string NextMediaType { get; set; }
|
||||
|
||||
public string PlaylistItemId { get; set; }
|
||||
|
||||
public QueueItem[] NowPlayingQueue { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,17 +8,25 @@ namespace MediaBrowser.Model.Session
|
||||
public class TranscodingInfo
|
||||
{
|
||||
public string AudioCodec { get; set; }
|
||||
|
||||
public string VideoCodec { get; set; }
|
||||
|
||||
public string Container { get; set; }
|
||||
|
||||
public bool IsVideoDirect { get; set; }
|
||||
|
||||
public bool IsAudioDirect { get; set; }
|
||||
|
||||
public int? Bitrate { get; set; }
|
||||
|
||||
public float? Framerate { get; set; }
|
||||
|
||||
public double? CompletionPercentage { get; set; }
|
||||
|
||||
public int? Width { get; set; }
|
||||
|
||||
public int? Height { get; set; }
|
||||
|
||||
public int? AudioChannels { get; set; }
|
||||
|
||||
public TranscodeReason[] TranscodeReasons { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user