//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Model.Tasks;
///
/// Enum TaskState.
///
public enum TaskState
{
///
/// The idle.
///
Idle,
///
/// The cancelling.
///
Cancelling,
///
/// The running.
///
Running
}