namespace Nop.Core.Domain.Common; /// /// Search term record (for statistics) /// public partial class SearchTermReportLine { /// /// Gets or sets the keyword /// public string Keyword { get; set; } /// /// Gets or sets search count /// public int Count { get; set; } }