DIReservoirDevice.cs 455 B

1234567891011121314151617181920
  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 DIReservoirDevice : ReservoirDevice
  9. {
  10. /// <summary>
  11. /// 构造函数
  12. /// </summary>
  13. /// <param name="moduleName"></param>
  14. public DIReservoirDevice(string moduleName) : base(moduleName)
  15. {
  16. }
  17. }
  18. }