using System.Collections.Generic; namespace FspWebApp.Entity.Service { /// /// DO NOT MODIFY THIS CLASS, YOU SHOULD CREATE YOUR NEW CLASS WITH DIFFERENT VERSION NUMBER. /// modify this class will break the format alignment in Web front end parsing protocal. /// public class PumpData { public int SiteNozzleNumber { get; set; } public (int, int) PumpidNozzleid { get; set; } public string PumpState { get; set; } public double? Amount { get; set; } public double? Volumn { get; set; } public double? VolumeTotalizer { get; set; } public int? PayableTrxsCount { get; set; } } }