ManufacturingSettings.cs 633 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using InABox.Configuration;
  3. namespace Comal.Classes
  4. {
  5. public class ManufacturingSettings : UserConfigurationSettings
  6. {
  7. [Obsolete("Repaced with FactoryID")]
  8. public string Factory { get; set; }
  9. public Guid FactoryID { get; set; }
  10. public bool SortByDueDate { get; set; }
  11. public bool CompactView { get; set; }
  12. public bool ConsolidatedView { get; set; }
  13. public bool IncludeHeld { get; set; }
  14. public bool IncludeOrders { get; set; }
  15. public bool IncludeCompleted { get; set; }
  16. public string ExportColumns { get; set; }
  17. }
  18. }