FuelPriceDownloadRequestedEventArgs.cs 353 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HengshanPaymentTerminal
  5. {
  6. public class FuelPriceDownloadRequestedEventArgs : EventArgs
  7. {
  8. public FuelPriceDownloadRequestedEventArgs(bool requested)
  9. {
  10. Requested = requested;
  11. }
  12. public bool Requested { get; set; }
  13. }
  14. }