Webiant Logo Webiant Logo
  1. No results found.

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

PrivateMessageModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Web.Models.PrivateMessages;

public partial record PrivateMessageModel : BaseNopEntityModel
{
    public int FromCustomerId { get; set; }
    public string CustomerFromName { get; set; }
    public bool AllowViewingFromProfile { get; set; }

    public int ToCustomerId { get; set; }
    public string CustomerToName { get; set; }
    public bool AllowViewingToProfile { get; set; }

    public string Subject { get; set; }

    public string Message { get; set; }

    public DateTime CreatedOn { get; set; }

    public bool IsRead { get; set; }
}