Files
Sharp7Reactive/Sharp7.Rx/Enums/ConnectionState.cs
2024-02-07 09:54:18 +01:00

10 lines
134 B
C#

namespace Sharp7.Rx.Enums;
public enum ConnectionState
{
Initial,
Connected,
DisconnectedByUser,
ConnectionLost
}