using Nop.Web.Framework.Models; namespace Nop.Web.Models.News; public partial record NewsCommentModel : BaseNopEntityModel { public int CustomerId { get; set; } public string CustomerName { get; set; } public string CustomerAvatarUrl { get; set; } public string CommentTitle { get; set; } public string CommentText { get; set; } public DateTime CreatedOn { get; set; } public bool AllowViewingProfiles { get; set; } }