namespace Squirrowse.Core.Models { public class User { public User(string connectionId, string agentName, ConnectionType userType) { ConnectionId = connectionId; AgentName = agentName; UserType = userType; } public string ConnectionId { get; set; } public string AgentName { get; set; } public ConnectionType UserType { get; set; } } }