start padding out interface to enable configuration, will enable properties to be given up from notifier e.g.: port/endpoint etc.

This commit is contained in:
chris.watts90@outlook.com 2017-06-19 21:57:23 +01:00
parent c985b35bb5
commit 2bc7ef9898

View File

@ -14,5 +14,13 @@ namespace Interfaces
void NotifyRaceLapEvent(NotificationEventArgs args, Pilot pilot);
void NotifyRaceWinner(NotificationEventArgs args, Pilot pilot);
void NotifyRaceFinished(NotificationEventArgs args);
//Dictionary<string, string> NotifierConfigurationSettings { get; }
//Dictionary<string, List<ValidationError>> ParseConfiguration(Dictionary<string, string> properties);
}
public class ValidationError
{
public string Error { get; set; }
}
}