namespace NetAdmin.Domain.Events; /// /// 泛型事件源接口 /// public interface IEventSourceGeneric : IEventSource { /// /// 事件承载(携带)数据 /// T Data { get; } }