- using InABox.Configuration;
- namespace Comal.Classes
- {
- public class DeliveryScreenSettings : UserConfigurationSettings
- {
- public DeliveryScreenSettings()
- {
- DeliveryColumnWidth = 500F;
- }
- public ScreenViewType ViewType { get; set; }
- public double DeliveryColumnWidth { get; set; }
- }
- }
|