using System.Collections.Generic; namespace AIStudio.Tools.PluginSystem.Assistants.DataModel; public class AssistantProfileSelection : AssistantComponentBase { public override AssistantUiCompontentType Type => AssistantUiCompontentType.PROFILE_SELECTION; public Dictionary Props { get; set; } = new(); public List Children { get; set; } = new(); public string ValidationMessage { get => this.Props.TryGetValue(nameof(this.ValidationMessage), out var v) ? v.ToString() ?? string.Empty : string.Empty; set => this.Props[nameof(this.ValidationMessage)] = value; } }