20 lines
333 B
C#
20 lines
333 B
C#
namespace LiteCharms.Features;
|
|
|
|
public enum EmailStatuses : int
|
|
{
|
|
GeneralError = 0,
|
|
AuthenticationError = 1,
|
|
ProtocolError = 2,
|
|
Connected = 3,
|
|
Disconnected = 4,
|
|
TooManyConnections = 5,
|
|
ConnectionAborted = 6,
|
|
Success = 7
|
|
}
|
|
|
|
public enum Priorities : int
|
|
{
|
|
Low = 0,
|
|
Medium = 1,
|
|
High = 2,
|
|
} |