| 1234567891011121314151617181920212223242526 | using InABox.Core;namespace Comal.Classes{    public class ProductCharge : EnclosedEntity    {        [CheckBoxEditor]        [EditorSequence(1)]        [Caption(nameof(Chargeable), IncludePath = false)]        public bool Chargeable { get; set; }        [EnumLookupEditor(typeof(ProductPriceType))]        [EditorSequence(2)]        [Caption(nameof(PriceType), IncludePath = false)]        public ProductPriceType PriceType { get; set; }                [CurrencyEditor]        [EditorSequence(3)]        [Caption(nameof(Price), IncludePath = false)]        public double Price { get; set; }                [EditorSequence(4)]        [Caption(nameof(Markup), IncludePath = false)]        public double Markup { get; set; }    }}
 |