2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-06-27 05:23:13 +00:00

ConnectionStatus

This commit is contained in:
2022-08-14 21:54:51 +03:00
parent f4d5eb0fdd
commit 2f379732ae
3 changed files with 27 additions and 2 deletions

View File

@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Esiur.Net.IIP
{
public enum ConnectionStatus
{
Closed,
Connecting,
Connected
}
}