Webiant Logo Webiant Logo
  1. No results found.

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

QueuedEmailPriority.cs

namespace Nop.Core.Domain.Messages;

/// 
/// Represents priority of queued email
/// 
public enum QueuedEmailPriority
{
    /// 
    /// Low
    /// 
    Low = 0,

    /// 
    /// High
    /// 
    High = 5
}