namespace Nop.Core.Domain.Messages;
/// <summary>
/// Represents priority of queued email
/// </summary>
public enum QueuedEmailPriority
{
/// Low
Low = 0,
/// High
High = 5
}