33 lines
691 B
C#
33 lines
691 B
C#
using Nop.Core.Domain.Forums;
|
|
using Nop.Web.Framework.Models;
|
|
|
|
namespace Nop.Web.Models.Boards;
|
|
|
|
public partial record EditForumPostModel : BaseNopModel
|
|
{
|
|
#region Properties
|
|
|
|
public int Id { get; set; }
|
|
|
|
public int ForumTopicId { get; set; }
|
|
|
|
public bool IsEdit { get; set; }
|
|
|
|
public string Text { get; set; }
|
|
|
|
public EditorType ForumEditor { get; set; }
|
|
|
|
public string ForumName { get; set; }
|
|
|
|
public string ForumTopicSubject { get; set; }
|
|
|
|
public string ForumTopicSeName { get; set; }
|
|
|
|
public bool IsCustomerAllowedToSubscribe { get; set; }
|
|
|
|
public bool Subscribed { get; set; }
|
|
|
|
public bool DisplayCaptcha { get; set; }
|
|
|
|
#endregion
|
|
} |