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; } }