2019-11-05 17:00:36 +01:00
|
|
|
|
namespace Squirrowse.Core.Models
|
|
|
|
|
{
|
|
|
|
|
public class User
|
|
|
|
|
{
|
|
|
|
|
public User(string connectionId, string agentName)
|
|
|
|
|
{
|
|
|
|
|
ConnectionId = connectionId;
|
|
|
|
|
AgentName = agentName;
|
|
|
|
|
}
|
2019-11-06 13:47:00 +01:00
|
|
|
|
|
|
|
|
|
public string ConnectionId { get; set; }
|
|
|
|
|
public string AgentName { get; set; }
|
2019-11-05 17:00:36 +01:00
|
|
|
|
}
|
|
|
|
|
}
|