From 1200f437c2d165271fedbe5c221eafb8925f36ac Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Fri, 3 Mar 2017 00:10:59 +0100 Subject: [PATCH] handle hair cut query --- .../GCMHandlers/HairCutQueryGCMHandler.cs | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ZicMoove/ZicMoove.Droid/Services/GCMHandlers/HairCutQueryGCMHandler.cs diff --git a/ZicMoove/ZicMoove.Droid/Services/GCMHandlers/HairCutQueryGCMHandler.cs b/ZicMoove/ZicMoove.Droid/Services/GCMHandlers/HairCutQueryGCMHandler.cs new file mode 100644 index 00000000..6dbfaf1e --- /dev/null +++ b/ZicMoove/ZicMoove.Droid/Services/GCMHandlers/HairCutQueryGCMHandler.cs @@ -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(); + } + } +} \ No newline at end of file