Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Infrastructure;
namespace Nop.Web.Models.Common;
///
/// record that has a slug and page for route values. Used for Topic (posts) and
/// Forum (topics) pagination
///
public partial record SlugRouteValues : BaseRouteValues
{
public int Id { get; set; }
public string Slug { get; set; }
}