123456789101112131415161718 |
- 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; }
- int MinimumStockLevel { get; set; }
- }
- }
|