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