IAwgComponent.cs 230 B

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