IAwgGasket.cs 270 B

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