namespace VideoBrowser.Common
{
#region Enums
///
/// Defines the VideoState
///
public enum VideoState
{
///
/// Defines the None
///
None,
///
/// Defines the Downloading
///
Downloading,
///
/// Defines the Downloaded
///
Downloaded,
///
/// Defines the Error
///
Error
}
#endregion Enums
}