using InABox.Core; namespace PRSServer { public class ScheduleServerProperties : ServerProperties { public ScheduleServerProperties() { } [ComboLookupEditor(typeof(DatabaseServerLookupGenerator))] [EditorSequence(1)] public string Server { get; set; } public override ServerType Type() { return ServerType.Schedule; } } }