15 lines
305 B
C#
15 lines
305 B
C#
using Jambo.Domain.ServiceBus;
|
|
using System;
|
|
|
|
namespace Jambo.Domain.Aggregates.Blogs.Events
|
|
{
|
|
public class PostEnabledDomainEvent : DomainEvent
|
|
{
|
|
public PostEnabledDomainEvent(Guid aggregateRootId, int version)
|
|
: base(aggregateRootId, version)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|