Webiant Logo Webiant Logo
  1. No results found.

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

NotifyType.cs

namespace Nop.Services.Messages;

/// <summary>
/// Notification type
/// </summary>
public enum NotifyType
{
    /// <summary>
    /// Success
    /// </summary>
    Success,

    /// <summary>
    /// Error
    /// </summary>
    Error,

    /// <summary>
    /// Warning
    /// </summary>
    Warning
}