1234567891011121314151617181920 |
- using System;
- using InABox.Configuration;
- namespace Comal.Classes
- {
- public class PurchaseScreenSettings : UserConfigurationSettings
- {
- public PurchaseScreenSettings()
- {
- PurchaseColumnWidth = 500F;
- ShowAll = false;
- }
- public ScreenViewType ViewType { get; set; }
- public double PurchaseColumnWidth { get; set; }
- public bool ShowAll { get; set; }
- public Guid SelectedCategory { get; set; }
- }
- }
|