namespace Nop.Web.Framework.Models.DataTables; /// /// Represents button view render for DataTables column /// public partial class RenderButtonView : IRender { #region Ctor /// /// Initializes a new instance of the RenderButtonEdit class /// /// URL to the edit action public RenderButtonView(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 }