Files
event-sourcing-jambo/source/Jambo.Domain/Aggregates/Posts/Events/PostCreatedDomainEvent.cs
Ivan Paulovich 2eddbb65e2 ok
2017-08-22 18:30:10 -03:00

14 lines
284 B
C#

using Jambo.Domain.ServiceBus;
using System;
namespace Jambo.Domain.Aggregates.Blogs.Events
{
public class PostCreatedDomainEvent : DomainEvent
{
public PostCreatedDomainEvent(Guid aggregateRootId)
:base(aggregateRootId, 0)
{
}
}
}