using System;
using CMS.SiteProvider;
using CMS.GlobalHelper;
///
/// Custom table item registration
///
[CustomTable(CustomTableType.CLASS_NAME, typeof(CustomTableType))]
public partial class CMSModuleLoader
{
}
///
/// Sample custom table item class
///
public partial class CustomTableType : CustomTableItem
{
#region "Constants"
///
/// Class name of the item
///
public const string CLASS_NAME = "##CLASSNAME##";
#endregion
#region "Properties"
// ##PROPERTIES##
#endregion
#region "Methods"
///
/// Constructor
///
public CustomTableType()
: base(CLASS_NAME)
{
}
#endregion
}