HSReservoirDevice.cs 467 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PunkHPX8_RT.Devices.Reservoir
  7. {
  8. public class HSReservoirDevice : ReservoirDevice
  9. {
  10. /// <summary>
  11. /// 构造函数
  12. /// </summary>
  13. /// <param name="moduleName"></param>
  14. public HSReservoirDevice(string moduleName) : base(moduleName)
  15. {
  16. }
  17. }
  18. }