yavsc/Yavsc/Model/Chat/Connection.cs

10 lines
214 B
C#
Raw Normal View History

2016-11-01 23:22:46 +01:00
namespace Yavsc.Model.Chat
{
public class Connection
{
public string ConnectionID { get; set; }
public string UserAgent { get; set; }
public bool Connected { get; set; }
}
}