RaceLapTimer/RaceLapTimer/Interfaces/INotifierProviderFactory.cs
chris.watts90@outlook.com 17d50b5be1 removed async methods, for some reason just results in null.. no exceptions anywhere :(
added protection to prevent reloading assemblies already in the domain.
corrected bug only identifying INotifierProviderFactory types.
2017-06-23 22:56:23 +01:00

8 lines
127 B
C#

namespace Interfaces
{
public interface INotifierProviderFactory
{
INotifierProvider GetProvider();
}
}