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 ForumTopicPageModel : BaseNopModel
{
public ForumTopicPageModel()
{
ForumPostModels = new List();
}
public int Id { get; set; }
public string Subject { get; set; }
public string SeName { get; set; }
public string WatchTopicText { get; set; }
public bool IsCustomerAllowedToEditTopic { get; set; }
public bool IsCustomerAllowedToDeleteTopic { get; set; }
public bool IsCustomerAllowedToMoveTopic { get; set; }
public bool IsCustomerAllowedToSubscribe { get; set; }
public IList ForumPostModels { get; set; }
public int PostsPageIndex { get; set; }
public int PostsPageSize { get; set; }
public int PostsTotalRecords { get; set; }
}