Try your search with a different keyword or use * as a wildcard.
namespace Nop.Web.Framework.Models.DataTables;
///
/// Represents button render for DataTables column
///
public partial class RenderButtonsInlineEdit : IRender
{
#region Ctor
///
/// Initializes a new instance of the RenderButton class
///
public RenderButtonsInlineEdit()
{
ClassName = NopButtonClassDefaults.Default;
}
#endregion
#region Properties
///
/// Gets or sets button class name
///
public string ClassName { get; set; }
#endregion
}