JobDocumentsScreenSettings.cs 341 B

123456789101112131415
  1. using InABox.Configuration;
  2. namespace Comal.Classes
  3. {
  4. public class JobDocumentsScreenSettings : UserConfigurationSettings
  5. {
  6. public JobDocumentsScreenSettings()
  7. {
  8. AnchorWidth = 800F;
  9. }
  10. public ScreenViewType ViewType { get; set; }
  11. public double AnchorWidth { get; set; }
  12. }
  13. }