namespace Nop.Core.Domain.Blogs; /// /// Represents a blog comment /// public partial class BlogComment : BaseEntity { /// /// Gets or sets the customer identifier /// public int CustomerId { get; set; } /// /// Gets or sets the comment text /// public string CommentText { get; set; } /// /// Gets or sets a value indicating whether the comment is approved /// public bool IsApproved { get; set; } /// /// Gets or sets the store identifier /// public int StoreId { get; set; } /// /// Gets or sets the blog post identifier /// public int BlogPostId { get; set; } /// /// Gets or sets the date and time of instance creation /// public DateTime CreatedOnUtc { get; set; } }