public TabElement(uint cfgid, string configContent = "") { this.type = TabElement.Type.Config; this.cfgId = cfgid; this.configContent = configContent; this.selfDefContent = null; }
public TabElement(string selfDef = "") { this.type = TabElement.Type.SelfDef; this.cfgId = 0u; this.configContent = null; this.selfDefContent = selfDef; }