Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.News;
///
/// Represents a news comment
///
public partial class NewsComment : BaseEntity
{
///
/// Gets or sets the comment title
///
public string CommentTitle { get; set; }
///
/// Gets or sets the comment text
///
public string CommentText { get; set; }
///
/// Gets or sets the news item identifier
///
public int NewsItemId { get; set; }
///
/// Gets or sets the customer identifier
///
public int CustomerId { 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 date and time of instance creation
///
public DateTime CreatedOnUtc { get; set; }
}