using InABox.Core; namespace Comal.Classes { public class ProductCharge : BaseObject, IEnclosedEntity { [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; } } }