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 enum FilterOrdersOptions { IncludeOrders, OrdersOnly, ExcludeOrders } public FilterOrdersOptions FilterOrders { get; set; } = FilterOrdersOptions.ExcludeOrders; public bool IncludeCompleted { get; set; } public string ExportColumns { get; set; } } }