RunDevice.cs 204 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Island.StandardLib
  6. {
  7. public enum RunDevice
  8. {
  9. Server = 0x0,
  10. Client = 0x1
  11. }
  12. }