Skip to content

Instantly share code, notes, and snippets.

@gnschenker
Created June 16, 2015 03:41
EventData
public class EventData
{
public Guid Id { get; set; }
public DateTime Created { get; set; }
public string AggregateType { get; set; }
public Guid AggregateId { get; set; }
public int Version { get; set; }
public string Event { get; set; }
public string Metadata { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment