| 1234567891011121314151617181920212223242526272829303132 | using System;using InABox.Configuration;namespace Comal.Classes{    public enum ManufacturingViewType    {        Full,        Compact,        Job    }    public class ManufacturingSettings : IUserConfigurationSettings    {        [Obsolete("Repaced with FactoryID")]        public string Factory { get; set; }        public Guid FactoryID { get; set; }        public bool SortByDueDate { get; set; }        public ManufacturingViewType ViewType { get; set; }        public bool IncludeHeld { get; set; }        public bool IncludeOrders { get; set; }        public bool IncludeCompleted { get; set; }        public string ExportColumns { get; set; }    }}
 |