18 lines
No EOL
274 B
C#
18 lines
No EOL
274 B
C#
using System.ComponentModel;
|
|
|
|
namespace RdtClient.Data.Enums;
|
|
|
|
public enum Provider
|
|
{
|
|
[Description("RealDebrid")]
|
|
RealDebrid,
|
|
|
|
[Description("AllDebrid")]
|
|
AllDebrid,
|
|
|
|
[Description("Premiumize")]
|
|
Premiumize,
|
|
|
|
[Description("TorBox")]
|
|
TorBox
|
|
} |