FuelingDoneEventArgs.cs 440 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SinochemInternetPlusApp
  7. {
  8. internal class FuelingDoneEventArgs : EventArgs
  9. {
  10. public int NozzleId { get; set; }
  11. public int FuelingSqNo { get; set; }
  12. public decimal Amount { get; set; }
  13. public decimal Quantity { get; set; }
  14. public long AuthId { get; set; }
  15. }
  16. }