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