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 RenderButtonRemove : IRender
{
#region Ctor
///
/// Initializes a new instance of the RenderButton class
///
/// Button title
public RenderButtonRemove(string title)
{
Title = title;
ClassName = NopButtonClassDefaults.Default;
}
#endregion
#region Properties
///
/// Gets or sets button title
///
public string Title { get; set; }
///
/// Gets or sets button class name
///
public string ClassName { get; set; }
#endregion
}