IAwgStyle.cs 354 B

12345678910111213141516171819
  1. namespace InABox.Integration.Awg
  2. {
  3. public enum AwgStyleType
  4. {
  5. Mill = 0,
  6. Powdercoated = 1,
  7. Anodised = 2,
  8. Galvanised = 3,
  9. Varnished = 4,
  10. Taped = 5,
  11. Intrinsic = 6
  12. }
  13. public interface IAwgStyle : IIntegrationStyle, IAwgItem
  14. {
  15. AwgStyleType StyleType { get; }
  16. }
  17. }