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