22 lines
599 B
C#
22 lines
599 B
C#
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; }
|
|
} |