Fix warnings MediaBrowser.Model

This commit is contained in:
Bond_009
2020-02-04 01:49:27 +01:00
parent 176e850973
commit f47ad85011
290 changed files with 1132 additions and 290 deletions

View File

@@ -1,27 +1,27 @@
namespace MediaBrowser.Model.Tasks
{
/// <summary>
/// Enum TaskCompletionStatus
/// Enum TaskCompletionStatus.
/// </summary>
public enum TaskCompletionStatus
{
/// <summary>
/// The completed
/// The completed.
/// </summary>
Completed,
/// <summary>
/// The failed
/// The failed.
/// </summary>
Failed,
/// <summary>
/// Manually cancelled by the user
/// Manually cancelled by the user.
/// </summary>
Cancelled,
/// <summary>
/// Aborted due to a system failure or shutdown
/// Aborted due to a system failure or shutdown.
/// </summary>
Aborted
}