Try your search with a different keyword or use * as a wildcard.
namespace Nop.Web.Framework.Models.DataTables;
///
/// Represents link render for DataTables column
///
public partial class RenderLink : IRender
{
#region Ctor
///
/// Initializes a new instance of the RenderButton class
///
/// URL
public RenderLink(DataUrl url)
{
Url = url;
}
#endregion
#region Properties
///
/// Gets or sets Url
///
public DataUrl Url { get; set; }
///
/// Gets or sets link title
///
public string Title { get; set; }
#endregion
}