Created
July 15, 2019 08:12
-
-
Save ducmeit1/add7e79444db9b0886284662c5b12cdb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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