AdSigCompletedEventArgs.cs 445 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Ips.Sps.Scheduling.SigAds
  7. {
  8. public class AdSigCompletedEventArgs : EventArgs
  9. {
  10. public AdSigCompletedEventArgs()
  11. {
  12. }
  13. public AdSigCompletedEventArgs(AdSigResult result)
  14. {
  15. Result = result;
  16. }
  17. public AdSigResult Result { get; set; }
  18. }
  19. }