1234567891011121314151617 |
- using System.Collections.Generic;
- namespace FspWebApp.Entity.Client
- {
- /// <summary>
- /// 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.
- /// </summary>
- public class PumpUploadData
- {
- //public PumpUploadData(string deviceName, //DataCategory category,
- // DataPriorityLevel priorityLevel) : base(deviceName, priorityLevel, "1")
- //{ }
- public string DeviceName { set; get; }
- }
- }
|