diff --git a/MediaBrowser.Controller/QuickConnect/IQuickConnect.cs b/MediaBrowser.Controller/QuickConnect/IQuickConnect.cs
index 5518e0385d..993637c8aa 100644
--- a/MediaBrowser.Controller/QuickConnect/IQuickConnect.cs
+++ b/MediaBrowser.Controller/QuickConnect/IQuickConnect.cs
@@ -13,22 +13,22 @@ namespace MediaBrowser.Controller.QuickConnect
///
/// Gets or sets the length of user facing codes.
///
- public int CodeLength { get; set; }
+ int CodeLength { get; set; }
///
/// Gets or sets the string to prefix internal access tokens with.
///
- public string TokenNamePrefix { get; set; }
+ string TokenNamePrefix { get; set; }
///
/// Gets the current state of quick connect.
///
- public QuickConnectState State { get; }
+ QuickConnectState State { get; }
///
/// Gets or sets the time (in minutes) before quick connect will automatically deactivate.
///
- public int Timeout { get; set; }
+ int Timeout { get; set; }
///
/// Assert that quick connect is currently active and throws an exception if it is not.
@@ -72,7 +72,7 @@ namespace MediaBrowser.Controller.QuickConnect
/// Expire quick connect requests that are over the time limit. If is true, all requests are unconditionally expired.
///
/// If true, all requests will be expired.
- public void ExpireRequests(bool expireAll = false);
+ void ExpireRequests(bool expireAll = false);
///
/// Deletes all quick connect access tokens for the provided user.
diff --git a/MediaBrowser.Controller/Session/ISessionManager.cs b/MediaBrowser.Controller/Session/ISessionManager.cs
index 23230e41e5..ffa19fb690 100644
--- a/MediaBrowser.Controller/Session/ISessionManager.cs
+++ b/MediaBrowser.Controller/Session/ISessionManager.cs
@@ -264,7 +264,12 @@ namespace MediaBrowser.Controller.Session
/// Task{SessionInfo}.
Task AuthenticateNewSession(AuthenticationRequest request);
- public Task AuthenticateQuickConnect(AuthenticationRequest request, string token);
+ ///
+ /// Authenticates a new session with quick connect.
+ ///
+ /// The request.
+ /// Task{SessionInfo}.
+ Task AuthenticateQuickConnect(AuthenticationRequest request, string token);
///
/// Creates the new session.