IAwgGlass.cs 263 B

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