QuoteScreenSettings.cs 397 B

1234567891011121314151617
  1. using System;
  2. using InABox.Configuration;
  3. namespace Comal.Classes
  4. {
  5. public class QuoteScreenSettings : UserConfigurationSettings
  6. {
  7. public QuoteScreenSettings()
  8. {
  9. QuoteColumnWidth = 300F;
  10. }
  11. public Guid QuoteStatus { get; set; }
  12. public ScreenViewType ViewType { get; set; }
  13. public double QuoteColumnWidth { get; set; }
  14. }
  15. }