LCOV - code coverage report | ||||||||||||||||||
|
||||||||||||||||||
Line data Source code 1 : using Cqrs.Events; 2 : using EventStore.ClientAPI; 3 : using Newtonsoft.Json; 4 : 5 : namespace Cqrs.EventStore 6 : { 7 : public interface IEventDeserialiser<TAuthenticationToken> 8 : { 9 0 : IEvent<TAuthenticationToken> Deserialise(RecordedEvent eventData); 10 : 11 0 : IEvent<TAuthenticationToken> Deserialise(ResolvedEvent notification); 12 : 13 0 : JsonSerializerSettings GetSerialisationSettings(); 14 : } 15 : } |
Generated by: LCOV version 1.10 |