@@ -3,7 +3,9 @@ namespace InABox.Integration.Awg
public interface IAwgComponent : IIntegrationMaterial, IAwgBOMItem
{
string Group { get; set; }
+
string Supplier { get; set; }
+ string Finish { get; set; }
double PackSize { get; set; }
}
@@ -2,8 +2,10 @@ namespace InABox.Integration.Awg
public interface IAwgGasket : IIntegrationMaterial, IAwgBOMItem
double Length { get; set; }
@@ -8,7 +8,8 @@ namespace InABox.Integration.Awg
Anodised = 2,
Galvanised = 3,
Varnished = 4,
- Taped = 5
+ Taped = 5,
+ Intrinsic = 6
public interface IAwgStyle : IIntegrationStyle, IAwgItem