From a3ca36cb54a3e6e743fbcf90f19f0d76ba71aebc Mon Sep 17 00:00:00 2001 From: Ionut Andrei Oanca Date: Mon, 16 Nov 2020 17:40:19 +0100 Subject: Review logging and minor changes in SyncPlay --- MediaBrowser.Controller/SyncPlay/GroupMember.cs | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Controller/SyncPlay/GroupMember.cs') diff --git a/MediaBrowser.Controller/SyncPlay/GroupMember.cs b/MediaBrowser.Controller/SyncPlay/GroupMember.cs index 9a9d30277f..5fb982e85a 100644 --- a/MediaBrowser.Controller/SyncPlay/GroupMember.cs +++ b/MediaBrowser.Controller/SyncPlay/GroupMember.cs @@ -8,10 +8,19 @@ namespace MediaBrowser.Controller.SyncPlay public class GroupMember { /// - /// Gets or sets the session. + /// Initializes a new instance of the class. + /// + /// The session. + public GroupMember(SessionInfo session) + { + Session = session; + } + + /// + /// Gets the session. /// /// The session. - public SessionInfo Session { get; set; } + public SessionInfo Session { get; } /// /// Gets or sets the ping, in milliseconds. -- cgit v1.2.3