mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 19:57:07 +02: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);
|
||
|
|
}
|
||
|
|
}
|