Try your search with a different keyword or use * as a wildcard.
namespace Nop.Web.Framework.Models;
/// <summary>
/// Delete confirmation model
/// </summary>
public partial record DeleteConfirmationModel : BaseNopModel
{
/// <summary>
/// Identifier
/// </summary>
public string Id { get; set; }
/// <summary>
/// Controller name
/// </summary>
public string ControllerName { get; set; }
/// <summary>
/// Action name
/// </summary>
public string ActionName { get; set; }
/// <summary>
/// Window ID
/// </summary>
public string WindowId { get; set; }
}