1234567891011121314151617 |
- using System;
- using InABox.Configuration;
- namespace Comal.Classes
- {
- public class QuoteScreenSettings : UserConfigurationSettings
- {
- public QuoteScreenSettings()
- {
- QuoteColumnWidth = 300F;
- }
- public Guid QuoteStatus { get; set; }
- public ScreenViewType ViewType { get; set; }
- public double QuoteColumnWidth { get; set; }
- }
- }
|