INNER CODE UNIT · C#
ProductCreatedEvent
fullstackhero/dotnet-microservices-boilerplate · fluentpos/events/ProductCreatedEvent.cs:5
public class ProductCreatedEvent : DomainEvent
{
public Guid ProductId { get; }
public string ProductName { get; }
public ProductCreatedEvent(Guid productId, string productName)
{
ProductId = productId;
ProductName = productName;
}
}