123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace InABox.Core
- {
- public class ComboMultiLookupEditor : BaseComboEditor
- {
- public ComboMultiLookupEditor(Type generator) : base(generator)
- {
- }
- protected override BaseEditor DoClone()
- {
- return CloneBaseComboEditor();
- }
- }
- }
|