IAwgGlass.cs 336 B

123456789101112
  1. namespace InABox.Integration.Awg
  2. {
  3. public interface IAwgGlass : IIntegrationMaterial, IAwgBOMItem
  4. {
  5. string Group { get; set; }
  6. string Supplier { get; set; }
  7. string Treatment { get; set; }
  8. double Height { get; set; }
  9. double Width { get; set; }
  10. string Location { get; set; }
  11. }
  12. }