ScheduleServerProperties.cs 423 B

1234567891011121314151617181920
  1. using InABox.Core;
  2. namespace PRSServer
  3. {
  4. public class ScheduleServerProperties : ServerProperties
  5. {
  6. public ScheduleServerProperties()
  7. {
  8. }
  9. [ComboLookupEditor(typeof(DatabaseServerLookupGenerator))]
  10. [EditorSequence(1)]
  11. public string Server { get; set; }
  12. public override ServerType Type()
  13. {
  14. return ServerType.Schedule;
  15. }
  16. }
  17. }