123456789101112131415161718192021 |
- using System;
- namespace Wayne.ForecourtControl
- {
- public class FuelModeChangeEventArgs : EventArgs
- {
- public FuelModeChangeEventArgs(IPump pump, int mode)
- {
- this.Pump = pump;
- this.mode = mode;
- }
- public IPump Pump;
- public int mode;
-
-
-
-
- }
- }
|