WaterOperate.cs 368 B

12345678910111213141516
  1. using SHJX.Service.ServerClient;
  2. using SHJX.Service.Control.PortOperate.Interface;
  3. namespace SHJX.Service.Control.PortOperate
  4. {
  5. public class WaterOperate : StorageOperateImp
  6. {
  7. /// <summary>
  8. /// 水
  9. /// </summary>
  10. public WaterOperate(OptClient client) : base(client)
  11. {
  12. OpName = "Water";
  13. }
  14. }
  15. }