mirror of
https://onedev.site.tesses.net/tytd2025
synced 2026-02-09 01:55:46 +00:00
First commit
This commit is contained in:
29
Tesses.YouTubeDownloader/src/Bell.tcross
Normal file
29
Tesses.YouTubeDownloader/src/Bell.tcross
Normal file
@@ -0,0 +1,29 @@
|
||||
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}
|
||||
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user