mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-03 01:17:56 +08:00
12 lines
309 B
Plaintext
12 lines
309 B
Plaintext
|
namespace PowerToysNotifications
|
||
|
{
|
||
|
[version(1)]
|
||
|
[default_interface]
|
||
|
runtimeclass BackgroundHandler : Windows.ApplicationModel.Background.IBackgroundTask
|
||
|
{
|
||
|
BackgroundHandler();
|
||
|
|
||
|
void Run(Windows.ApplicationModel.Background.IBackgroundTaskInstance taskInstance);
|
||
|
}
|
||
|
}
|