Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Orders;
using Nop.Web.Framework.Models;
namespace Nop.Web.Models.Order;
public partial record CustomerOrderListModel : BaseNopModel
{
public CustomerOrderListModel()
{
Orders = new List();
RecurringOrders = new List();
RecurringPaymentErrors = new List();
}
public IList Orders { get; set; }
public IList RecurringOrders { get; set; }
public IList RecurringPaymentErrors { get; set; }
#region Nested classes
public partial record OrderDetailsModel : BaseNopEntityModel
{
public string CustomOrderNumber { get; set; }
public string OrderTotal { get; set; }
public bool IsReturnRequestAllowed { get; set; }
public OrderStatus OrderStatusEnum { get; set; }
public string OrderStatus { get; set; }
public string PaymentStatus { get; set; }
public string ShippingStatus { get; set; }
public DateTime CreatedOn { get; set; }
}
public partial record RecurringOrderModel : BaseNopEntityModel
{
public string StartDate { get; set; }
public string CycleInfo { get; set; }
public string NextPayment { get; set; }
public int TotalCycles { get; set; }
public int CyclesRemaining { get; set; }
public int InitialOrderId { get; set; }
public bool CanRetryLastPayment { get; set; }
public string InitialOrderNumber { get; set; }
public bool CanCancel { get; set; }
}
#endregion
}