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