Try your search with a different keyword or use * as a wildcard.
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; }
    /// 
    /// Get or sets the time, in milliseconds, on which notification will close automatically
    ///  
    public int Timeout { get; set; }
}