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