aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/MediaInfo
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-12-20 21:49:16 +0100
committerBond_009 <bond.009@outlook.com>2019-12-20 21:49:16 +0100
commit5751d865363606e2ee1a773adaaf58c2864b08f8 (patch)
tree76c3a1134995b93101ebd5466e52aec404d43650 /MediaBrowser.Model/MediaInfo
parentbb62dd14c2fee3f7a6fa8cb3d8592500046ed3c9 (diff)
Fix warnings and move to System.Text.Json
Diffstat (limited to 'MediaBrowser.Model/MediaInfo')
-rw-r--r--MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs12
1 files changed, 10 insertions, 2 deletions
diff --git a/MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs b/MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs
index 38638af42..440818c3e 100644
--- a/MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs
+++ b/MediaBrowser.Model/MediaInfo/PlaybackInfoResponse.cs
@@ -1,15 +1,20 @@
+using System;
+using System.Collections.Generic;
using MediaBrowser.Model.Dlna;
using MediaBrowser.Model.Dto;
namespace MediaBrowser.Model.MediaInfo
{
+ /// <summary>
+ /// Class PlaybackInfoResponse.
+ /// </summary>
public class PlaybackInfoResponse
{
/// <summary>
/// Gets or sets the media sources.
/// </summary>
/// <value>The media sources.</value>
- public MediaSourceInfo[] MediaSources { get; set; }
+ public IReadOnlyList<MediaSourceInfo> MediaSources { get; set; }
/// <summary>
/// Gets or sets the play session identifier.
@@ -23,9 +28,12 @@ namespace MediaBrowser.Model.MediaInfo
/// <value>The error code.</value>
public PlaybackErrorCode? ErrorCode { get; set; }
+ /// <summary>
+ /// Initializes a new instance of the <see cref="PlaybackInfoResponse" /> class.
+ /// </summary>
public PlaybackInfoResponse()
{
- MediaSources = new MediaSourceInfo[] { };
+ MediaSources = Array.Empty<MediaSourceInfo>();
}
}
}