Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Areas.Admin.Models.Affiliates;
///
/// Represents an affiliated customer search model
///
public partial record AffiliatedCustomerSearchModel : BaseSearchModel
{
#region Properties
public int AffliateId { get; set; }
#endregion
}