UpdateCompletedEvent.cs 426 B

123456789101112131415161718
  1. using System;
  2. namespace Update.Core.Events
  3. {
  4. /// <summary>
  5. /// 更新完成事件类型
  6. /// </summary>
  7. /// <param name="sender"></param>
  8. /// <param name="e"></param>
  9. public delegate void UpdateCompletedEventHandler(object sender, UpdateCompletedEventArgs e);
  10. /// <summary>
  11. /// 更新完成事件数据
  12. /// </summary>
  13. public class UpdateCompletedEventArgs : EventArgs
  14. {
  15. }
  16. }