ProductChargeEditor.cs 223 B

123456789101112
  1. using InABox.Core;
  2. namespace Comal.Classes
  3. {
  4. public class ProductChargeEditor : BaseEditor
  5. {
  6. protected override BaseEditor DoClone()
  7. {
  8. return new ProductChargeEditor();
  9. }
  10. }
  11. }