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