IProductInstance.cs 339 B

123456789101112131415161718
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Comal.Classes
  6. {
  7. public interface IProductInstance
  8. {
  9. Guid ID { get; set; }
  10. ProductStyleLink Style { get; set; }
  11. StockDimensions Dimensions { get; set; }
  12. int MinimumStockLevel { get; set; }
  13. }
  14. }