Convert array property to IReadOnlyList

This commit is contained in:
crobibero
2020-11-12 08:29:42 -07:00
parent 00c4055b6e
commit 73f9a6d7d0
10 changed files with 34 additions and 38 deletions

View File

@@ -2,6 +2,7 @@
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using MediaBrowser.Model.Dlna;
namespace MediaBrowser.Model.MediaInfo
@@ -55,6 +56,6 @@ namespace MediaBrowser.Model.MediaInfo
public bool EnableDirectStream { get; set; }
public MediaProtocol[] DirectPlayProtocols { get; set; }
public IReadOnlyList<MediaProtocol> DirectPlayProtocols { get; set; }
}
}