34 lines
826 B
C#
34 lines
826 B
C#
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
using Nop.Web.Framework.Models;
|
|
using Nop.Web.Framework.Mvc.ModelBinding;
|
|
|
|
namespace Nop.Web.Areas.Admin.Models.Topics;
|
|
|
|
/// <summary>
|
|
/// Represents a topic search model
|
|
/// </summary>
|
|
public partial record TopicSearchModel : BaseSearchModel
|
|
{
|
|
#region Ctor
|
|
|
|
public TopicSearchModel()
|
|
{
|
|
AvailableStores = new List<SelectListItem>();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
[NopResourceDisplayName("Admin.ContentManagement.Topics.List.SearchStore")]
|
|
public int SearchStoreId { get; set; }
|
|
|
|
public IList<SelectListItem> AvailableStores { get; set; }
|
|
|
|
[NopResourceDisplayName("Admin.ContentManagement.Topics.List.SearchKeywords")]
|
|
public string SearchKeywords { get; set; }
|
|
|
|
public bool HideStoresList { get; set; }
|
|
|
|
#endregion
|
|
} |