ServerType.cs 252 B

12345678910111213141516
  1. namespace PRSServer
  2. {
  3. public enum ServerType
  4. {
  5. Database,
  6. GPS,
  7. Schedule,
  8. AutoDiscovery,
  9. Web,
  10. Certificate,
  11. HTTPProxy,
  12. WebSocketProxy,
  13. PipeProxy,
  14. Other = -1
  15. }
  16. }