namespace EventBus { public interface IBaseEventData { /// /// 清除所有事件订阅 /// void Clear(); /// /// 取消事件订阅 /// /// 事件标识 void UnSubscrip(Guid guid); /// /// 事件名称 /// string EventName { get; } /// /// 事件hash /// string Hash { get; } } }