mirror of
https://github.com/evopro-ag/Sharp7Reactive.git
synced 2025-12-17 04:02:52 +00:00
10 lines
134 B
C#
10 lines
134 B
C#
namespace Sharp7.Rx.Enums;
|
|
|
|
public enum ConnectionState
|
|
{
|
|
Initial,
|
|
Connected,
|
|
DisconnectedByUser,
|
|
ConnectionLost
|
|
}
|