Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Orders;
///
/// Represents a custom wishlist item
///
public partial class CustomWishlist : BaseEntity
{
///
/// Gets or sets a name
///
public string Name { get; set; }
///
/// Gets or sets the customer identifier
///
public int CustomerId { get; set; }
///
/// Gets or sets the date and time of instance creation
///
public DateTime CreatedOnUtc { get; set; }
}