123456789101112131415161718 |
- using InABox.Core;
- using InABox.Integration.Awg;
- namespace Comal.Classes
- {
-
- [Caption("Integrations")]
- public class ProductStyleIntegrationSource : BaseIntegrationSource<ProductStyle,ProductStyleLink>, ILicense<ProductManagementLicense>
- {
- [EnumLookupEditor(typeof(AwgStyleType), Editable = Editable.Disabled, Visible = Visible.Hidden)]
- public AwgStyleType StyleType { get; set; }
-
- [DoubleEditor(Editable = Editable.Disabled, Visible = Visible.Hidden)]
- [DoNotPersist]
- public double Cost { get; set; }
- }
-
- }
|