Skip to content

Instantly share code, notes, and snippets.

@caloggins
Created July 22, 2014 17:38
namespace PolyMap
{
public interface IPublisher
{
void Publish(Command command);
}
public abstract class Command
{
public Guid Id { get; set; }
}
public abstract class Event
{
public Guid Id { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment