PipeDatabaseProxyProperties.cs 246 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace PRSServer
  5. {
  6. public class PipeDatabaseProxyProperties : DatabaseProxyProperties
  7. {
  8. public override ServerType Type() => ServerType.PipeProxy;
  9. }
  10. }