Webiant Logo Webiant Logo
  1. No results found.

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

NotifyData.cs

namespace Nop.Services.Messages;

/// 
/// Message structure
/// 
public struct NotifyData
{
    /// 
    /// Message type (success/warning/error)
    /// 
    public NotifyType Type { get; set; }

    /// 
    /// Message text
    /// 
    public string Message { get; set; }

    /// 
    /// Get a sets a value indicating whether the message should not be HTML encoded
    /// 
    public bool Encode { get; set; }
}