handle hair cut query
This commit is contained in:
parent
7b5903782d
commit
8883a4fbc2
1 changed files with 21 additions and 0 deletions
|
|
@ -0,0 +1,21 @@
|
||||||
|
using Android.App;
|
||||||
|
using Android.Content;
|
||||||
|
using Android.OS;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace ZicMoove.Droid.Services.GCMHandlers
|
||||||
|
{
|
||||||
|
public class HairCutQueryGCMHandler : GCMessageHandler
|
||||||
|
{
|
||||||
|
public HairCutQueryGCMHandler(Context context,
|
||||||
|
NotificationManager notificationManager,
|
||||||
|
Notification.Builder notificationBuilder) : base(context, notificationManager, notificationBuilder)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void Handle(string from, Bundle data)
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue