32 lines
566 B
C#
32 lines
566 B
C#
namespace VideoBrowser.Common
|
|
{
|
|
#region Enums
|
|
|
|
/// <summary>
|
|
/// Defines the VideoState
|
|
/// </summary>
|
|
public enum VideoState
|
|
{
|
|
/// <summary>
|
|
/// Defines the None
|
|
/// </summary>
|
|
None,
|
|
|
|
/// <summary>
|
|
/// Defines the Downloading
|
|
/// </summary>
|
|
Downloading,
|
|
|
|
/// <summary>
|
|
/// Defines the Downloaded
|
|
/// </summary>
|
|
Downloaded,
|
|
|
|
/// <summary>
|
|
/// Defines the Error
|
|
/// </summary>
|
|
Error
|
|
}
|
|
|
|
#endregion Enums
|
|
} |