Files
Sharp7Reactive/Sharp7.Rx/Enums/ConnectionState.cs
2024-02-09 09:58:16 +01:00

11 lines
148 B
C#

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