diff --git a/README.md b/README.md new file mode 100644 index 0000000..db5cdb8 --- /dev/null +++ b/README.md @@ -0,0 +1,19 @@ +# Firebase-Cloud-Messaging-Net +A .Net library for sending Firebase Cloud Messages + +Usage example: + +```csharp + +var notification = new AndroidNotification() +{ + Title = "Notification header", + Body = "Notification body" +}; +var message = new Message() +{ + To = "Device token", + Notification = notification +}; +var response = message.Send("Server key at Settings->Cloud Messaging"); +```