forked from aly/qstbak
16 lines
540 B
C#
16 lines
540 B
C#
namespace NotificationMasterAPI;
|
|
|
|
public static class NMAPINames
|
|
{
|
|
public const string DisplayToastNotification = "NotificationMasterAPI.DisplayToastNotification";
|
|
|
|
public const string FlashTaskbarIcon = "NotificationMasterAPI.FlashTaskbarIcon";
|
|
|
|
public const string PlaySound = "NotificationMasterAPI.PlaySound";
|
|
|
|
public const string BringGameForeground = "NotificationMasterAPI.BringGameForeground";
|
|
|
|
public const string StopSound = "NotificationMasterAPI.StopSound";
|
|
|
|
public const string Active = "NotificationMasterAPI.Active";
|
|
}
|