IAwgStyle.cs 331 B

123456789101112131415161718
  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. }
  12. public interface IAwgStyle : IIntegrationStyle, IAwgItem
  13. {
  14. AwgStyleType StyleType { get; }
  15. }
  16. }