Webiant Logo Webiant Logo
  1. No results found.

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

PrivateMessage.cs

namespace Nop.Core.Domain.Forums;

/// 
/// Represents a private message
/// 
public partial class PrivateMessage : BaseEntity
{
    /// 
    /// Gets or sets the store identifier
    /// 
    public int StoreId { get; set; }

    /// 
    /// Gets or sets the customer identifier who sent the message
    /// 
    public int FromCustomerId { get; set; }

    /// 
    /// Gets or sets the customer identifier who should receive the message
    /// 
    public int ToCustomerId { get; set; }

    /// 
    /// Gets or sets the subject
    /// 
    public string Subject { get; set; }

    /// 
    /// Gets or sets the text
    /// 
    public string Text { get; set; }

    /// 
    /// Gets or sets a value indicating whether message is read
    /// 
    public bool IsRead { get; set; }

    /// 
    /// Gets or sets a value indicating whether message is deleted by author
    /// 
    public bool IsDeletedByAuthor { get; set; }

    /// 
    /// Gets or sets a value indicating whether message is deleted by recipient
    /// 
    public bool IsDeletedByRecipient { get; set; }

    /// 
    /// Gets or sets the date and time of instance creation
    /// 
    public DateTime CreatedOnUtc { get; set; }
}