This repository has been archived on 2026-03-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Eco/VideoBrowser/Common/VideoState.cs
2023-07-24 12:00:34 +02:00

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
}