using System; namespace Update.Core.Events { /// /// 更新完成事件类型 /// /// /// public delegate void UpdateCompletedEventHandler(object sender, UpdateCompletedEventArgs e); /// /// 更新完成事件数据 /// public class UpdateCompletedEventArgs : EventArgs { } }