| 123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using InABox.Configuration;
- using InABox.Core;
- namespace Comal.Classes
- {
- public enum FactorySidePanel
- {
- None,
- Racks,
- Packs,
- }
- public class FactoryFloorLocalSettings : ILocalConfigurationSettings
- {
- public FactoryFloorLocalSettings()
- {
- Section = CoreUtils.FullGuid;
- Station = -1;
- LineColor = "#FF0000";
- FontSize = 12;
- AreaID = Guid.Empty;
- SidePanel = FactorySidePanel.None;
- }
- public Guid Section { get; set; }
- public int Station { get; set; }
- public Guid AreaID { get; set; }
- public FactorySidePanel SidePanel { get; set; }
- public string LineColor { get; set; }
- public int FontSize { get; set; }
-
- public DateTime CurrentBatchDate { get; set; }
- public Guid CurrentBatchID { get; set; }
- }
- }
|