aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/PlayTo/uBaseObject.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Emby.Dlna/PlayTo/uBaseObject.cs')
-rw-r--r--Emby.Dlna/PlayTo/uBaseObject.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/Emby.Dlna/PlayTo/uBaseObject.cs b/Emby.Dlna/PlayTo/uBaseObject.cs
index 1f0b06f689..0d9478e42e 100644
--- a/Emby.Dlna/PlayTo/uBaseObject.cs
+++ b/Emby.Dlna/PlayTo/uBaseObject.cs
@@ -1,10 +1,11 @@
#pragma warning disable CS1591
using System;
+using System.Collections.Generic;
namespace Emby.Dlna.PlayTo
{
- public class uBaseObject
+ public class UBaseObject
{
public string Id { get; set; }
@@ -20,7 +21,7 @@ namespace Emby.Dlna.PlayTo
public string Url { get; set; }
- public string[] ProtocolInfo { get; set; }
+ public IReadOnlyList<string> ProtocolInfo { get; set; }
public string UpnpClass { get; set; }
@@ -49,7 +50,7 @@ namespace Emby.Dlna.PlayTo
}
}
- public bool Equals(uBaseObject obj)
+ public bool Equals(UBaseObject obj)
{
if (obj == null)
{