Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

LastPostModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Web.Models.Boards;

public partial record LastPostModel : BaseNopModel
{
    public int Id { get; set; }
    public int ForumTopicId { get; set; }
    public string ForumTopicSeName { get; set; }
    public string ForumTopicSubject { get; set; }

    public int CustomerId { get; set; }
    public bool AllowViewingProfiles { get; set; }
    public string CustomerName { get; set; }

    public string PostCreatedOnStr { get; set; }

    public bool ShowTopic { get; set; }
}