Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ProductTemplate.cs

namespace Nop.Core.Domain.Catalog;

/// 
/// Represents a product template
/// 
public partial class ProductTemplate : 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; }

    /// 
    /// Gets or sets a comma-separated list of product type identifiers NOT supported by this template
    /// 
    public string IgnoredProductTypes { get; set; }
}