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