Squirrowse/Squirrowse.Core/Models/User.cs

16 lines
440 B
C#
Raw Normal View History

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