- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace PRSServer
- {
- public abstract class DatabaseProxyProperties : ServerProperties
- {
- [ComboLookupEditor(typeof(DatabaseServerLookupGenerator))]
- [EditorSequence(1)]
- public string Server { get; set; }
- }
- }
|