| 1234567891011121314151617181920 | using System;using InABox.Configuration;namespace Comal.Classes{    public class ConsignmentScreenSettings : IUserConfigurationSettings    {        public ConsignmentScreenSettings()        {            AnchorWidth = 500F;            ShowAll = false;        }        public ScreenViewType ViewType { get; set; }        public double AnchorWidth { get; set; }        public bool ShowAll { get; set; }        public Guid SelectedType { get; set; }        public Guid SelectedCategory { get; set; }    }}
 |