using InABox.Core; using InABox.Integration.Awg; namespace Comal.Classes { [Caption("Integrations")] public class ProductStyleIntegrationSource : BaseIntegrationSource, ILicense { [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; } } }