| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | 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; }    }    [Obsolete("Replacing with FactoryFloorLocalSettings", false)]    public class FactoryFloorSettings : IUserConfigurationSettings    {        public Guid Section { get; set; }        public int Station { get; set; }    }}
 |