2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-05-06 11:32:59 +00:00
esiur-dotnet/Esiur/Net/IIP/ConnectionStatus.cs
2024-04-30 14:09:05 +03:00

14 lines
198 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Net.IIP
{
public enum ConnectionStatus
{
Closed,
Connecting,
Connected
}
}