using System;
using System.Collections.Generic;
using System.Text;

namespace Dfs.WayneChina.HengshanPayTerminal
{
    public class FuelPriceDownloadRequestedEventArgs : EventArgs
    {
        public FuelPriceDownloadRequestedEventArgs(bool requested)
        {
            Requested = requested;
        }

        public bool Requested { get; set; }
    }
}