Files
tytd2025/Tesses.YouTubeDownloader/src/Bell.tcross
2025-10-15 00:07:35 -05:00

29 lines
903 B
Plaintext

class SubscriptionBell
{
/^ Disabled bell ^/
static getDisabled() "Disabled";
/^ Download (Low quality) ^/
static getDownloadLow() "DownloadLow";
/^ Download (High quality) ^/
static getDownloadHigh() "DownloadHigh";
/^ Download (and notify) (Low quality) ^/
static getBellLow() "BellLow";
/^ Download (and notify) (High quality) ^/
static getBellHigh() "BellHigh";
/^ Notify ^/
static getBell() "Bell";
static getBells()
{
return [
{name="Disabled",value=SubscriptionBell.Disabled},
{name="Notify",value=SubscriptionBell.Bell},
{name="Notify and Download (Low)", value=SubscriptionBell.BellLow},
{name="Notify and Download (High)", value=SubscriptionBell.BellHigh},
{name="Download (Low)", value=SubscriptionBell.DownloadLow},
{name="Download (High)", value=SubscriptionBell.DownloadHigh}
];
}
}