mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
11 lines
134 B
C#
11 lines
134 B
C#
namespace Roblox.Common.Mail.Pop3;
|
|
|
|
public enum Pop3ConnectionStateEnum
|
|
{
|
|
None,
|
|
Disconnected,
|
|
Authorization,
|
|
Connected,
|
|
Closed
|
|
}
|