| using InABox.Configuration;namespace Comal.Classes{    public class DeliveryScreenSettings : IUserConfigurationSettings    {        public DeliveryScreenSettings()        {            AnchorWidth = 500F;        }        public ScreenViewType ViewType { get; set; }        public double AnchorWidth { get; set; }    }}
 |