Mango.Nop.Libraries/Nop.Services/Messages/NotifyType.cs

22 lines
309 B
C#

namespace Nop.Services.Messages;
/// <summary>
/// Notification type
/// </summary>
public enum NotifyType
{
/// <summary>
/// Success
/// </summary>
Success,
/// <summary>
/// Error
/// </summary>
Error,
/// <summary>
/// Warning
/// </summary>
Warning
}