WD_DeviceInfoExtRaw.cs 486 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace HNWD.Pregrant.Model
  7. {
  8. public class WD_DeviceInfoExtRaw : ModelExtBase<WD_DeviceInfoRaw>
  9. {
  10. public List<WD_DeviceInfoRaw> BedInfoArray = new List<WD_DeviceInfoRaw>();
  11. public List<WD_DeviceInfoRaw> DeviceInfoArray = new List<WD_DeviceInfoRaw>();
  12. public List<WD_DeviceInfoRaw> hostList = new List<WD_DeviceInfoRaw>();
  13. }
  14. }