// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) // This code is distributed under the GNU LGPL (for details please see \doc\license.txt) using System; namespace Tango.Scripting.Editors.Highlighting.Xshd { /// /// A property in an Xshd file. /// [Serializable] public class XshdProperty : XshdElement { /// /// Gets/sets the name. /// public string Name { get; set; } /// /// Gets/sets the value. /// public string Value { get; set; } /// /// Creates a new XshdColor instance. /// public XshdProperty() { } /// public override object AcceptVisitor(IXshdVisitor visitor) { return null; // return visitor.VisitProperty(this); } } }