Webiant Logo Webiant Logo
  1. No results found.

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

TopicTemplate.cs

namespace Nop.Core.Domain.Topics;

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