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("Simple Downloader")]
|
|
Simple,
|
|
|
|
[Description("Multi-Part Downloader")]
|
|
MultiPart,
|
|
|
|
[Description("Aria2c")]
|
|
Aria2c
|
|
} |