10 lines
128 B
C#
10 lines
128 B
C#
|
|
namespace VDownload.Core.Enums
|
|||
|
|
{
|
|||
|
|
public enum VideoStatus
|
|||
|
|
{
|
|||
|
|
Idle,
|
|||
|
|
Waiting,
|
|||
|
|
InProgress
|
|||
|
|
}
|
|||
|
|
}
|