namespace Ant.Service.Utilities
{
///
/// This class contains the Positive and Negative starting response strings
/// that can be returned from a Pop3 server.
///
internal static class Pop3Responses
{
///
/// The +OK starting of a positive response from the server.
///
internal const string Ok = "+OK";
///
/// The -ERR starting of a negative response from the server.
///
internal const string Err = "-ERR";
}
}