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; } } }