WIP
DirectOutput framework for virtual pinball cabinets WIP
Go to:
Overview 
ValidateItemEventArgs.cs
Go to the documentation of this file.
1 using System;
2 
3 namespace DirectOutput.General.Generic
4 {
8  public class ValidateItemEventArgs<Ty> : EventArgs
9  {
10 
14  public Ty Item { get; set; }
18  public ValidateItemEventArgs() { }
23  public ValidateItemEventArgs(Ty Item)
24  {
25  this.Item = Item;
26  }
27  }
28 
29 }
ValidateItemEventArgs(Ty Item)
Initializes a new instance of the ValidateItemEventArgs class.
ValidateItemEventArgs()
Initializes a new instance of the ValidateItemEventArgs class.