Castle.Components.DictionaryAdapter.XmlNamespaceAttribute
namespace Castle.Components.DictionaryAdapter
{
public class XmlNamespaceAttribute : Attribute
{
public bool Root { get; set; }
public bool Default { get; set; }
public string NamespaceUri { get; }
public string Prefix { get; }
public XmlNamespaceAttribute(string namespaceUri, string prefix);
}
}