SupplierScreenSettings.cs 349 B

123456789101112131415
  1. using InABox.Configuration;
  2. namespace Comal.Classes
  3. {
  4. public class SupplierScreenSettings : UserConfigurationSettings
  5. {
  6. public SupplierScreenSettings()
  7. {
  8. SupplierColumnWidth = 800F;
  9. }
  10. public ScreenViewType ViewType { get; set; }
  11. public double SupplierColumnWidth { get; set; }
  12. }
  13. }