FactoryFloorLocalSettings.cs 772 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using InABox.Configuration;
  3. using InABox.Core;
  4. namespace Comal.Classes
  5. {
  6. public class FactoryFloorLocalSettings : ILocalConfigurationSettings
  7. {
  8. public FactoryFloorLocalSettings()
  9. {
  10. Section = CoreUtils.FullGuid;
  11. Station = -1;
  12. LineColor = "#FF0000";
  13. FontSize = 12;
  14. }
  15. public Guid Section { get; set; }
  16. public int Station { get; set; }
  17. public string LineColor { get; set; }
  18. public int FontSize { get; set; }
  19. }
  20. [Obsolete("Replacing with FactoryFloorLocalSettings", false)]
  21. public class FactoryFloorSettings : IUserConfigurationSettings
  22. {
  23. public Guid Section { get; set; }
  24. public int Station { get; set; }
  25. }
  26. }