16 lines
440 B
C#
16 lines
440 B
C#
namespace Squirrowse.Core.Models
|
|
{
|
|
public class User
|
|
{
|
|
public User(string connectionId, string agentName, ConnectionType userType)
|
|
{
|
|
ConnectionId = connectionId;
|
|
AgentName = agentName;
|
|
this.UserType = userType;
|
|
}
|
|
|
|
public string ConnectionId { get; set; }
|
|
public string AgentName { get; set; }
|
|
public ConnectionType UserType { get; set; }
|
|
}
|
|
} |