Fixed issue where it would slow down on waiting for RealDebrid generating links for downloads.
9 lines
176 B
C#
9 lines
176 B
C#
namespace RdtClient.Data.Enums
|
|
{
|
|
public enum TorrentDownloadAction
|
|
{
|
|
DownloadAll = 0,
|
|
DownloadAvailableFiles = 1,
|
|
DownloadManual = 2
|
|
}
|
|
}
|