Archived
1
0
This repository has been archived on 2026-04-22. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
FoxTube/FoxTube.Background/BackgroundProcessor.cs
T
Michael Gordeev d6d37151b8 Fresh start
2019-07-19 19:24:20 +03:00

13 lines
243 B
C#

using Windows.ApplicationModel.Background;
namespace FoxTube.Background
{
public sealed class BackgroundProcessor : IBackgroundTask
{
public async void Run(IBackgroundTaskInstance taskInstance)
{
}
}
}