Skip to content

Instantly share code, notes, and snippets.

@horsdal
Created January 13, 2018 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save horsdal/490e24f2245b77a90549059c13d3ec12 to your computer and use it in GitHub Desktop.
Save horsdal/490e24f2245b77a90549059c13d3ec12 to your computer and use it in GitHub Desktop.
public class UserAggregate : Aggregate<UserAggregate>
{
public string Username { get; internal set; } = String.Empty;
public string Email { get; internal set; } = String.Empty;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment