Try your search with a different keyword or use * as a wildcard.
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Mvc.Rendering;
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Plugin.Misc.RFQ.Models.Admin;
///
/// Represents a quote search model
///
public record QuoteSearchModel : BaseSearchModel
{
#region Ctor
public QuoteSearchModel()
{
AvailableQuoteStatuses = new List();
}
#endregion
#region Properties
[NopResourceDisplayName("Plugins.Misc.RFQ.Fields.CustomerEmail")]
public string CustomerEmail { get; set; }
public int CustomerId { get; set; }
[NopResourceDisplayName("Plugins.Misc.RFQ.CreatedOnFrom")]
[UIHint("DateNullable")]
public DateTime? CreatedOnFrom { get; set; }
[NopResourceDisplayName("Plugins.Misc.RFQ.CreatedOnTo")]
[UIHint("DateNullable")]
public DateTime? CreatedOnTo { get; set; }
[NopResourceDisplayName("Plugins.Misc.RFQ.AdminQuote.QuoteStatus")]
public int QuoteStatus { get; set; }
public List AvailableQuoteStatuses { get; set; }
#endregion
}