using InABox.Core; using System; namespace Comal.Classes { public interface IJobMaterial { JobLink Job { get; set; } ProductLink Product { get; set; } ProductStyleLink Style { get; set; } StockDimensions Dimensions { get; set; } } }