123456789101112131415161718 |
- using System;
- using InABox.Configuration;
- using InABox.Core;
- namespace PRSClasses
- {
- public class WebSettings : BaseObject, IGlobalConfigurationSettings
- {
- [TextBoxEditor]
- [EditorSequence(1)]
- public string URL { get; set; }
- [IntegerEditor]
- [EditorSequence(2)]
- public int Port { get; set; }
- }
- }
|