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