Webiant Logo Webiant Logo
  1. No results found.

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

ForumSubscription.cs

namespace Nop.Core.Domain.Forums;

/// <summary>
/// Represents a forum subscription item
/// </summary>
public partial class ForumSubscription : BaseEntity
{
    /// <summary>
    /// Gets or sets the forum subscription identifier
    /// </summary>
    public Guid SubscriptionGuid { get; set; }

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

    /// <summary>
    /// Gets or sets the forum identifier
    /// </summary>
    public int ForumId { get; set; }

    /// <summary>
    /// Gets or sets the topic identifier
    /// </summary>
    public int TopicId { get; set; }

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