Apply suggestions from code review

This commit is contained in:
ConfusedPolarBear
2020-04-24 18:51:19 -05:00
parent 33390153fd
commit 70e50dfa90
3 changed files with 6 additions and 10 deletions

View File

@@ -8,16 +8,16 @@ namespace MediaBrowser.Model.QuickConnect
/// <summary>
/// This feature has not been opted into and is unavailable until the server administrator chooses to opt-in.
/// </summary>
Unavailable,
Unavailable = 0,
/// <summary>
/// The feature is enabled for use on the server but is not currently accepting connection requests.
/// </summary>
Available,
Available = 1,
/// <summary>
/// The feature is actively accepting connection requests.
/// </summary>
Active
Active = 2
}
}