Skip to content

Instantly share code, notes, and snippets.

@kakobotasso
Created May 14, 2019 04:00
Show Gist options
  • Save kakobotasso/53e4cea0de115f6da04ae770b47e8d07 to your computer and use it in GitHub Desktop.
Save kakobotasso/53e4cea0de115f6da04ae770b47e8d07 to your computer and use it in GitHub Desktop.
IEventTracker FireEvents
using System;
using System.Collections.Generic;
namespace FireEvents
{
public interface IEventTracker
{
void SendEvent(string eventId);
void SendEvent(string eventId, string paramName, string value);
void SendEvent(string eventId, IDictionary<string, string> parameters);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment