mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-02 19:12:51 +08:00
12 lines
256 B
C#
12 lines
256 B
C#
namespace NetAdmin.Domain.Events;
|
|
|
|
/// <summary>
|
|
/// 泛型事件源接口
|
|
/// </summary>
|
|
public interface IEventSourceGeneric<out T> : IEventSource
|
|
{
|
|
/// <summary>
|
|
/// 事件承载(携带)数据
|
|
/// </summary>
|
|
T Data { get; }
|
|
} |