- using InABox.Configuration;
- namespace Comal.Classes
- {
- public class JobDocumentsScreenSettings : IUserConfigurationSettings
- {
- public JobDocumentsScreenSettings()
- {
- AnchorWidth = 800F;
- }
- public ScreenViewType ViewType { get; set; }
- public double AnchorWidth { get; set; }
- }
- }
|