Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
namespace Cnblogs.Architecture.Ddd.Domain.Abstractions;
using MediatR;

namespace Cnblogs.Architecture.Ddd.Domain.Abstractions;

/// <summary>
/// 领域事件标记。
/// </summary>
public interface IDomainEvent
public interface IDomainEvent : INotification
{
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Cnblogs.Architecture.Ddd.Domain.Abstractions;
using Cnblogs.Architecture.Ddd.Domain.Abstractions;

// ReSharper disable once CheckNamespace
namespace MediatR;
Expand Down Expand Up @@ -33,4 +33,4 @@ public static async Task DispatchDomainEventsAsync(this IMediator mediator, IEnu
throw e;
}
}
}
}