yavsc/src/Yavsc.Abstract/Chat/IConnection.cs

10 lines
201 B
C#
Raw Normal View History

2019-05-07 14:01:23 +01:00
namespace Yavsc.Abstract.Chat
2018-01-02 16:35:03 +01:00
{
public interface IConnection
{
string ConnectionId { get; set; }
string UserAgent { get; set; }
bool Connected { get; set; }
}
}