mirror of
https://onedev.site.tesses.net/tytd2025
synced 2026-02-08 17:45:45 +00:00
29 lines
903 B
Plaintext
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}
|
|
|
|
];
|
|
}
|
|
} |