31 lines
759 B
C#
31 lines
759 B
C#
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
using Nop.Web.Framework.Models;
|
|
using Nop.Web.Framework.Mvc.ModelBinding;
|
|
|
|
namespace Nop.Web.Areas.Admin.Models.Customers;
|
|
|
|
/// <summary>
|
|
/// Represents a customer shopping cart search model
|
|
/// </summary>
|
|
public partial record CustomerShoppingCartSearchModel : BaseSearchModel
|
|
{
|
|
#region Ctor
|
|
|
|
public CustomerShoppingCartSearchModel()
|
|
{
|
|
AvailableShoppingCartTypes = new List<SelectListItem>();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
public int CustomerId { get; set; }
|
|
|
|
[NopResourceDisplayName("Admin.ShoppingCartType.ShoppingCartType")]
|
|
public int ShoppingCartTypeId { get; set; }
|
|
|
|
public IList<SelectListItem> AvailableShoppingCartTypes { get; set; }
|
|
|
|
#endregion
|
|
} |