Webiant Logo Webiant Logo
  1. No results found.

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

Forum.cs

namespace Nop.Core.Domain.Forums;

/// 
/// Represents a forum
/// 
public partial class Forum : BaseEntity
{
    /// 
    /// Gets or sets the forum group identifier
    /// 
    public int ForumGroupId { get; set; }

    /// 
    /// Gets or sets the name
    /// 
    public string Name { get; set; }

    /// 
    /// Gets or sets the description
    /// 
    public string Description { get; set; }

    /// 
    /// Gets or sets the number of topics
    /// 
    public int NumTopics { get; set; }

    /// 
    /// Gets or sets the number of posts
    /// 
    public int NumPosts { get; set; }

    /// 
    /// Gets or sets the last topic identifier
    /// 
    public int LastTopicId { get; set; }

    /// 
    /// Gets or sets the last post identifier
    /// 
    public int LastPostId { get; set; }

    /// 
    /// Gets or sets the last post customer identifier
    /// 
    public int LastPostCustomerId { get; set; }

    /// 
    /// Gets or sets the last post date and time
    /// 
    public DateTime? LastPostTime { get; set; }

    /// 
    /// Gets or sets the display order
    /// 
    public int DisplayOrder { get; set; }

    /// 
    /// Gets or sets the date and time of instance creation
    /// 
    public DateTime CreatedOnUtc { get; set; }

    /// 
    /// Gets or sets the date and time of instance update
    /// 
    public DateTime UpdatedOnUtc { get; set; }
}