diff options
| author | gion <oancaionutandrei@gmail.com> | 2020-05-09 14:34:07 +0200 |
|---|---|---|
| committer | gion <oancaionutandrei@gmail.com> | 2020-05-09 14:34:07 +0200 |
| commit | 5c8cbd4087261f13d003d7d4eab082cbf335b4d4 (patch) | |
| tree | b777fc583e54ea1b4a676cab0ad05bf9df903a1f /MediaBrowser.Model/SyncPlay | |
| parent | 8a6ec2fb713cb77e91d2fceea8b4fce8e7d17395 (diff) | |
Fix code issues
Diffstat (limited to 'MediaBrowser.Model/SyncPlay')
| -rw-r--r-- | MediaBrowser.Model/SyncPlay/GroupInfoView.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Model/SyncPlay/GroupInfoView.cs b/MediaBrowser.Model/SyncPlay/GroupInfoView.cs index 7b833506b..f28ecf16d 100644 --- a/MediaBrowser.Model/SyncPlay/GroupInfoView.cs +++ b/MediaBrowser.Model/SyncPlay/GroupInfoView.cs @@ -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; } } } |
