GenericNotification.cs 233 B

12345678910
  1. /// <summary>
  2. /// This is a wrapper for a notification
  3. /// The extra information associated with a notification can be placed in the data
  4. /// </summary>
  5. public class GenericNotification<NT>
  6. {
  7. public NT type;
  8. public object data;
  9. }