| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Windows.ApplicationModel.Background; | |
| namespace Usergrid.Notifications | |
| { | |
| public sealed class ExampleBackgroundTask : IBackgroundTask | |
| { | |
| public void Run(IBackgroundTaskInstance taskInstance) | |
| { | |
| } | |
| } | |
| } |