IAwgGasket.cs 225 B

123456789
  1. namespace InABox.Integration.Awg
  2. {
  3. public interface IAwgGasket : IIntegrationMaterial, IAwgBOMItem
  4. {
  5. string Group { get; set; }
  6. string Supplier { get; set; }
  7. double Length { get; set; }
  8. }
  9. }