ConfigurationChangeEventArgs.cs 265 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Wayne.ForecourtControl
  5. {
  6. /// <summary>
  7. /// Event argument for a configuration change
  8. /// </summary>
  9. public class ConfigurationChangeEventArgs : EventArgs
  10. {
  11. }
  12. }