Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Models.Boards;
public partial record ForumPageModel : BaseNopModel
{
public ForumPageModel()
{
ForumTopics = new List();
}
public int Id { get; set; }
public string Name { get; set; }
public string SeName { get; set; }
public string Description { get; set; }
public string WatchForumText { get; set; }
public IList ForumTopics { get; set; }
public int TopicPageSize { get; set; }
public int TopicTotalRecords { get; set; }
public int TopicPageIndex { get; set; }
public bool IsCustomerAllowedToSubscribe { get; set; }
public bool ForumFeedsEnabled { get; set; }
public int PostsPageSize { get; set; }
public bool AllowPostVoting { get; set; }
}