15 lines
No EOL
246 B
C#
15 lines
No EOL
246 B
C#
using System.ComponentModel;
|
|
|
|
namespace RdtClient.Data.Enums;
|
|
|
|
public enum DownloadClient
|
|
{
|
|
[Description("Internal Downloader")]
|
|
Internal,
|
|
|
|
[Description("Aria2c")]
|
|
Aria2c,
|
|
|
|
[Description("Symlink Downloader")]
|
|
Symlink,
|
|
} |