PurchaseScreenSettings.cs 471 B

1234567891011121314151617181920
  1. using System;
  2. using InABox.Configuration;
  3. namespace Comal.Classes
  4. {
  5. public class PurchaseScreenSettings : IUserConfigurationSettings
  6. {
  7. public PurchaseScreenSettings()
  8. {
  9. AnchorWidth = 500F;
  10. ShowAll = false;
  11. }
  12. public ScreenViewType ViewType { get; set; }
  13. public double AnchorWidth { get; set; }
  14. public bool ShowAll { get; set; }
  15. public Guid SelectedCategory { get; set; }
  16. }
  17. }