123456789101112131415161718192021222324252627 |
- using System;
- using InABox.Configuration;
- namespace Comal.Classes
- {
- public class ManufacturingSettings : UserConfigurationSettings
- {
- [Obsolete("Repaced with FactoryID")]
- public string Factory { get; set; }
- public Guid FactoryID { get; set; }
- public bool SortByDueDate { get; set; }
- public bool CompactView { get; set; }
- public bool ConsolidatedView { get; set; }
- public bool IncludeHeld { get; set; }
- public bool IncludeOrders { get; set; }
- public bool IncludeCompleted { get; set; }
- public string ExportColumns { get; set; }
- }
- }
|