- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HengshanPaymentTerminal
- {
- public class FuelPriceDownloadRequestedEventArgs : EventArgs
- {
- public FuelPriceDownloadRequestedEventArgs(bool requested)
- {
- Requested = requested;
- }
- public bool Requested { get; set; }
- }
- }
|