FruitBank/Libraries/Nop.Core/Domain/Common/SearchTermReportLine.cs

17 lines
369 B
C#

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