| 12345678910111213141516171819 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Comal.Classes
- {
- public interface IProductInstance
- {
- Guid ID { get; set; }
- ProductStyleLink Style { get; set; }
- StockDimensions Dimensions { get; set; }
-
- ProductInstanceMinimumStock MinimumStock { get; set; }
-
- }
- }
|