From 282e559dfc5c38940b0a77d7532c36db50d1840d Mon Sep 17 00:00:00 2001 From: Dmitriy Bobrovskiy Date: Tue, 30 Jan 2018 16:27:49 +0500 Subject: [PATCH] Create README.md --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 README.md 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"); +```