DirectOutputR1
DirectOutput framework R1 for virtual pinball cabinets.
Go to:
Overview 
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros Pages
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 }