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