11 lines
160 B
C#
11 lines
160 B
C#
|
|
namespace CloudPrint.Client.Models;
|
||
|
|
|
||
|
|
public enum ConnectionState
|
||
|
|
{
|
||
|
|
Disconnected,
|
||
|
|
Connecting,
|
||
|
|
Connected,
|
||
|
|
Subscribing,
|
||
|
|
Subscribed,
|
||
|
|
Error
|
||
|
|
}
|