using System;
using CMS.DocumentEngine;
using CMS.GlobalHelper;
///
/// Document type registration
///
[DocumentType(DocType.CLASS_NAME, typeof(DocType))]
public partial class CMSModuleLoader
{
}
///
/// Sample document type class
///
public partial class DocType : TreeNode
{
#region "Constants"
///
/// Class name of the item
///
public const string CLASS_NAME = "##CLASSNAME##";
#endregion
#region "Properties"
// ##PROPERTIES##
#endregion
#region "Methods"
///
/// Constructor
///
public DocType()
: base(CLASS_NAME)
{
}
#endregion
}