Skip to content

Instantly share code, notes, and snippets.

@ducmeit1
Created July 15, 2019 08:12
Show Gist options
  • Save ducmeit1/add7e79444db9b0886284662c5b12cdb to your computer and use it in GitHub Desktop.
Save ducmeit1/add7e79444db9b0886284662c5b12cdb to your computer and use it in GitHub Desktop.
using System;
using MediatR;
namespace Customer.Domain.Events
{
public class CustomerCreatedEvent : INotification
{
public Guid CustomerId { get; }
public CustomerCreatedEvent(Guid customerId)
{
CustomerId = customerId;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment