19 lines
497 B
C#
19 lines
497 B
C#
namespace Nop.Web.Framework.Models.DataTables;
|
|
|
|
public static partial class NopColumnClassDefaults
|
|
{
|
|
/// <summary>
|
|
/// Head and body content will be at center
|
|
/// </summary>
|
|
public static string CenterAll => "text-center";
|
|
|
|
/// <summary>
|
|
/// Parent-child control element
|
|
/// </summary>
|
|
public static string ChildControl => "child-control";
|
|
|
|
/// <summary>
|
|
/// Column contains button
|
|
/// </summary>
|
|
public static string Button => "button-column";
|
|
} |