Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Catalog;
///
/// Represents a manufacturer template
///
public partial class ManufacturerTemplate : BaseEntity
{
///
/// Gets or sets the template name
///
public string Name { get; set; }
///
/// Gets or sets the view path
///
public string ViewPath { get; set; }
///
/// Gets or sets the display order
///
public int DisplayOrder { get; set; }
}