IAwgComponent.cs 275 B

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