using System; using System.Collections.Generic; using System.Text; namespace InABox.Logikal { public interface ILogikalBOMItem { string Code { get; set; } string Description { get; set; } double Quantity { get; set; } double Cost { get; set; } } }