123456789101112131415161718192021222324252627282930 |
- using System;
- using InABox.Configuration;
- using InABox.Core;
- namespace Comal.Classes
- {
- public class FactoryFloorLocalSettings : ILocalConfigurationSettings
- {
- public FactoryFloorLocalSettings()
- {
- Section = CoreUtils.FullGuid;
- Station = -1;
- LineColor = "#FF0000";
- FontSize = 12;
- }
- public Guid Section { get; set; }
- public int Station { get; set; }
- public string LineColor { get; set; }
- public int FontSize { get; set; }
- }
- [Obsolete("Replacing with FactoryFloorLocalSettings", false)]
- public class FactoryFloorSettings : IUserConfigurationSettings
- {
- public Guid Section { get; set; }
- public int Station { get; set; }
- }
- }
|