1234567891011121314151617181920 |
- using System;
- namespace InABox.Core
- {
- public class CodePopupEditor : DataLookupEditor
- {
- public CodePopupEditor(Type type, params string[] otherfields) : base(type, otherfields)
- {
- }
- public string CodeColumn { get; set; }
- protected override BaseEditor DoClone()
- {
- var result = (CloneDataLookupEditor() as CodePopupEditor)!;
- result.CodeColumn = CodeColumn;
- return result;
- }
- }
- }
|