using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Wood.EventBus { /// /// 记录事件日志 /// 实现这个接口将会对事件记录日志 /// public interface IEventLog { } }