12 lines
211 B
C#
12 lines
211 B
C#
namespace RdtClient.Data.Enums
|
|
{
|
|
public enum RealDebridStatus
|
|
{
|
|
Processing = 0,
|
|
WaitingForFileSelection = 1,
|
|
Downloading = 2,
|
|
Finished = 3,
|
|
|
|
Error = 99
|
|
}
|
|
}
|