ProductScreenSettings.cs 422 B

1234567891011121314151617
  1. using InABox.Configuration;
  2. namespace Comal.Classes
  3. {
  4. public class ProductScreenSettings : IUserConfigurationSettings
  5. {
  6. public ProductScreenSettings()
  7. {
  8. AnchorWidth = 800F;
  9. SelectedDetailsGrid = 0;
  10. }
  11. public ScreenViewType ViewType { get; set; }
  12. public double AnchorWidth { get; set; }
  13. public int SelectedDetailsGrid { get; set; }
  14. }
  15. }