Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created February 5, 2018 22:31
Embed
What would you like to do?
public abstract class BankAccountEvent
{
public decimal Amount { get; set; }
}
public class Deposited : BankAccountEvent { }
public class Withdrawn : BankAccountEvent { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment