mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-04 12:02:51 +08:00
17 lines
343 B
C#
17 lines
343 B
C#
namespace NetAdmin.Infrastructure.EventBus;
|
|
|
|
/// <summary>
|
|
/// 事件数据接口
|
|
/// </summary>
|
|
public interface IEventData<T>
|
|
{
|
|
/// <summary>
|
|
/// 事件发生时间
|
|
/// </summary>
|
|
public DateTime CreatedTime { get; init; }
|
|
|
|
/// <summary>
|
|
/// 负载
|
|
/// </summary>
|
|
public T PayLoad { get; init; }
|
|
} |