28 lines
562 B
C#
28 lines
562 B
C#
|
|
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; }
|
|
} |