| namespace InABox.Integration.Awg{    public interface IAwgGlass : IIntegrationMaterial, IAwgBOMItem    {        string Group { get; set; }        string Supplier { get; set; }        string Treatment { get; set; }        double Height { get; set; }        double Width { get; set; }        string Location { get; set; }    }}
 |