Created
June 16, 2015 03:41
EventData
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
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