This commit is contained in:
Sebastián Katzer
2013-10-08 17:59:20 +02:00
parent f249f205fc
commit 433e216439
2 changed files with 28 additions and 6 deletions

View File

@@ -0,0 +1,27 @@
/**
* BackgroundMode.cs
* Cordova Background-Mode Plugin
*
* Created by Sebastian Katzer (github.com/katzer) on 08/10/2013.
* Copyright 2013 Sebastian Katzer. All rights reserved.
* GPL v2 licensed
*/
using System;
using System.Linq;
using Microsoft.Phone.Shell;
using WPCordovaClassLib.Cordova;
using WPCordovaClassLib.Cordova.Commands;
namespace APPPlant.Cordova.Plugin
{
public class BackgroundMode : BaseCommand
{
public BackgroundMode ()
{
}
}
}