Skip to content

Instantly share code, notes, and snippets.

@felipebaltazar
Created March 2, 2021 01:06
Show Gist options
  • Save felipebaltazar/f0d3c09850334355479f49f0d3e78037 to your computer and use it in GitHub Desktop.
Save felipebaltazar/f0d3c09850334355479f49f0d3e78037 to your computer and use it in GitHub Desktop.
namespace Notifications
{
public class PushDelegate : IPushDelegate
{
public async Task OnEntry(PushEntryArgs args)
{
//Do something
}
public async Task OnReceived(IDictionary<string, string> data)
{
}
public async Task OnTokenChanged(string token)
{
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment