IProductInstance.cs 375 B

12345678910111213141516171819
  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. ProductInstanceMinimumStock MinimumStock { get; set; }
  13. }
  14. }