10 lines
214 B
C#
10 lines
214 B
C#
|
|
namespace Yavsc.Model.Chat
|
||
|
|
{
|
||
|
|
public class Connection
|
||
|
|
{
|
||
|
|
public string ConnectionID { get; set; }
|
||
|
|
public string UserAgent { get; set; }
|
||
|
|
public bool Connected { get; set; }
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|