using System; namespace Update.Core.Events { /// /// 检查开始事件类型 /// /// /// public delegate void CheckStartedEventHandler(object sender, CheckStartedEventArgs e); /// /// 检查开始事件数据 /// public class CheckStartedEventArgs : EventArgs { } }