10 lines
201 B
C#
10 lines
201 B
C#
namespace Yavsc.Abstract.Chat
|
|
{
|
|
public interface IConnection
|
|
{
|
|
string ConnectionId { get; set; }
|
|
string UserAgent { get; set; }
|
|
bool Connected { get; set; }
|
|
}
|
|
|
|
}
|