Webiant Logo Webiant Logo
  1. No results found.

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

ForumPost.cs

namespace Nop.Core.Domain.Forums;

/// 
/// Represents a forum post
/// 
public partial class ForumPost : BaseEntity
{
    /// 
    /// Gets or sets the forum topic identifier
    /// 
    public int TopicId { get; set; }

    /// 
    /// Gets or sets the customer identifier
    /// 
    public int CustomerId { get; set; }

    /// 
    /// Gets or sets the text
    /// 
    public string Text { get; set; }

    /// 
    /// Gets or sets the IP address
    /// 
    public string IPAddress { 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; }

    /// 
    /// Gets or sets the count of votes
    /// 
    public int VoteCount { get; set; }
}