SCMode.cs 274 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 WCS_Client.Frm
  7. {
  8. public enum SCMode : Int16
  9. {
  10. 远程 = 1,
  11. 半自动 = 2,
  12. 手动 = 3,
  13. 维修 = 4
  14. }
  15. }