Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Models.Checkout;
public partial record CheckoutConfirmModel : BaseNopModel
{
public CheckoutConfirmModel()
{
Warnings = new List();
}
public bool TermsOfServiceOnOrderConfirmPage { get; set; }
public bool TermsOfServicePopup { get; set; }
public string MinOrderTotalWarning { get; set; }
public bool DisplayCaptcha { get; set; }
public IList Warnings { get; set; }
}