WD_DeviceInfoExt.cs 465 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 HNWD.Pregrant.Model
  7. {
  8. public class WD_DeviceInfoExt : ModelExtBase<WD_DeviceInfo>
  9. {
  10. public List<WD_DeviceInfo> BedInfoArray = new List<WD_DeviceInfo>();
  11. public List<WD_DeviceInfo> DeviceInfoArray = new List<WD_DeviceInfo>();
  12. public List<WD_DeviceInfo> hostList = new List<WD_DeviceInfo>();
  13. }
  14. }