mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
10 lines
242 B
C#
10 lines
242 B
C#
namespace GFramework.Cqrs.Abstractions.Cqrs;
|
|
|
|
/// <summary>
|
|
/// 表示一个一对多发布的通知消息。
|
|
/// 通知不要求返回值,允许被零个或多个处理器消费。
|
|
/// </summary>
|
|
public interface INotification
|
|
{
|
|
}
|