repo creation with initial code after cloning public repo
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
namespace MediaBrowser.Model.Tasks
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum TaskCompletionStatus.
|
||||
/// </summary>
|
||||
public enum TaskCompletionStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// The completed.
|
||||
/// </summary>
|
||||
Completed,
|
||||
|
||||
/// <summary>
|
||||
/// The failed.
|
||||
/// </summary>
|
||||
Failed,
|
||||
|
||||
/// <summary>
|
||||
/// Manually cancelled by the user.
|
||||
/// </summary>
|
||||
Cancelled,
|
||||
|
||||
/// <summary>
|
||||
/// Aborted due to a system failure or shutdown.
|
||||
/// </summary>
|
||||
Aborted
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user