//----------------------------------------------------------------------- // // copyright Pascal Cabanel. // //----------------------------------------------------------------------- namespace Xsd2Code.Library { using System; using System.Collections.Generic; using System.Text; using System.IO; using System.ComponentModel; /// /// represent namespace parameter. /// public class NamespaceParam { /// /// Initializes a new instance of the class. /// public NamespaceParam() { } /// /// Gets or sets the name space. /// /// The name space. [CategoryAttribute("Code"), DescriptionAttribute("namespace of generated file")] public string NameSpace { get; set; } } }