using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Editors { /// /// /// Represents a configuration which can be saved or load from a file or stream. /// /// [Serializable] public class FrameworkElementEditorConfiguration : ElementEditorConfiguration { /// /// Initializes a new instance of the class. /// public FrameworkElementEditorConfiguration() { } /// /// Initializes a new instance of the class. /// /// The base configuration. public FrameworkElementEditorConfiguration(ElementEditorConfiguration baseConfiguration) : base(baseConfiguration) { } /// /// Gets or sets the element xaml string. /// public String ElementXaml { get; set; } } }