123456789101112131415161718 |
- namespace InABox.Integration.Awg
- {
-
- public enum AwgStyleType
- {
- Mill = 0,
- Powdercoated = 1,
- Anodised = 2,
- Galvanised = 3,
- Varnished = 4,
- Taped = 5
- }
-
- public interface IAwgStyle : IIntegrationStyle, IAwgItem
- {
- AwgStyleType StyleType { get; }
- }
- }
|