12345678910111213141516171819202122 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace PRSServer
- {
-
- public class HTTPDatabaseProxyProperties : DatabaseProxyProperties
- {
- [IntegerEditor]
- [EditorSequence(2)]
- public int ListenPort { get; set; }
-
- [EditorSequence(3)]
- [FileNameEditor("Certificate Files (*.pfx)|*.pfx")]
- public string CertificateFile { get; set; }
- public override ServerType Type() => ServerType.HTTPProxy;
- }
- }
|