Try your search with a different keyword or use * as a wildcard.
namespace Nop.Services.Vendors;
/// <summary>
/// Represents default values related to vendor services
/// </summary>
public static partial class NopVendorDefaults
{
/// <summary>
/// Gets a generic attribute key to store vendor additional info
/// </summary>
public static string VendorAttributes => "VendorAttributes";
/// <summary>
/// Gets default prefix for vendor
/// </summary>
public static string VendorAttributePrefix => "vendor_attribute_";
}