Fix code issues

This commit is contained in:
gion
2020-05-09 14:34:07 +02:00
parent 8a6ec2fb71
commit 5c8cbd4087
8 changed files with 86 additions and 54 deletions

View File

@@ -1,3 +1,5 @@
using System.Collections.Generic;
namespace MediaBrowser.Model.SyncPlay
{
/// <summary>
@@ -33,6 +35,6 @@ namespace MediaBrowser.Model.SyncPlay
/// Gets or sets the participants.
/// </summary>
/// <value>The participants.</value>
public string[] Participants { get; set; }
public IReadOnlyList<string> Participants { get; set; }
}
}