namespace VideoBrowser.Core
{
#region Enums
///
/// Defines the OperationStatus
///
public enum OperationStatus
{
///
/// Defines the Canceled
///
Canceled,
///
/// Defines the Failed
///
Failed,
///
/// Defines the None
///
None,
///
/// Defines the Paused
///
Paused,
///
/// Defines the Success
///
Success,
///
/// Defines the Queued
///
Queued,
///
/// Defines the Working
///
Working
}
#endregion Enums
}