DatabaseProxyProperties.cs 333 B

1234567891011121314
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace PRSServer
  6. {
  7. public abstract class DatabaseProxyProperties : ServerProperties
  8. {
  9. [ComboLookupEditor(typeof(DatabaseServerLookupGenerator))]
  10. [EditorSequence(1)]
  11. public string Server { get; set; }
  12. }
  13. }