Try your search with a different keyword or use * as a wildcard.
using Microsoft.AspNetCore.Mvc.Rendering;
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Web.Areas.Admin.Models.Orders;
///
/// Represents a gift card search model
///
public partial record GiftCardSearchModel : BaseSearchModel
{
#region Ctor
public GiftCardSearchModel()
{
ActivatedList = new List();
}
#endregion
#region Properties
[NopResourceDisplayName("Admin.GiftCards.List.CouponCode")]
public string CouponCode { get; set; }
[NopResourceDisplayName("Admin.GiftCards.List.RecipientName")]
public string RecipientName { get; set; }
[NopResourceDisplayName("Admin.GiftCards.List.Activated")]
public int ActivatedId { get; set; }
[NopResourceDisplayName("Admin.GiftCards.List.Activated")]
public IList ActivatedList { get; set; }
#endregion
}