mirror of
https://github.com/snltty/linker.git
synced 2025-10-31 04:26:45 +08:00
13 lines
243 B
C#
13 lines
243 B
C#
using cmonitor.service;
|
|
|
|
namespace cmonitor.client
|
|
{
|
|
public sealed class ClientSignInState
|
|
{
|
|
public IConnection Connection { get; set; }
|
|
public bool Connected => Connection != null && Connection.Connected;
|
|
|
|
|
|
}
|
|
}
|