PumpUploadData.cs 572 B

1234567891011121314151617
  1. using System.Collections.Generic;
  2. namespace FspWebApp.Entity.Client
  3. {
  4. /// <summary>
  5. /// DO NOT MODIFY THIS CLASS, YOU SHOULD CREATE YOUR NEW CLASS WITH DIFFERENT VERSION NUMBER.
  6. /// modify this class will break the format alignment in Web front end parsing protocal.
  7. /// </summary>
  8. public class PumpUploadData
  9. {
  10. //public PumpUploadData(string deviceName, //DataCategory category,
  11. // DataPriorityLevel priorityLevel) : base(deviceName, priorityLevel, "1")
  12. //{ }
  13. public string DeviceName { set; get; }
  14. }
  15. }