using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SinochemInternetPlusApp { internal class FuelingDoneEventArgs : EventArgs { public int NozzleId { get; set; } public int FuelingSqNo { get; set; } public decimal Amount { get; set; } public decimal Quantity { get; set; } public long AuthId { get; set; } } }