123456789101112131415 |
- using InABox.Configuration;
- using InABox.Core;
- namespace PRSDesktop
- {
- public class OrgChartSettings : BaseObject, IGlobalConfigurationSettings
- {
- [EnumLookupEditor(typeof(OrgChartAppearance))]
- public OrgChartAppearance Appearance { get; set; }
- [EnumLookupEditor(typeof(OrgChartLayout))]
- public OrgChartLayout Layout { get; set; }
- //public double Zoom { get; set; }
- }
- }
|