yavsc/Yavsc.Abstract/Streaming/IConnection.cs

11 lines
206 B
C#

7 years ago
namespace Yavsc.Abstract.Streaming
{
public interface IConnection
{
string ConnectionId { get; set; }
string UserAgent { get; set; }
bool Connected { get; set; }
}
}