Created
May 14, 2019 04:00
-
-
Save kakobotasso/53e4cea0de115f6da04ae770b47e8d07 to your computer and use it in GitHub Desktop.
IEventTracker FireEvents
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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