using System;
using System.Collections.Generic;
using System.Text;
namespace ARW.Admin.WebApi.Hubs
{
///
/// 在线用户(聊天室)
///
public class OnlineUsersForChat
{
///
/// 客户端连接Id
///
public string ConnectionId { get; set; }
///
/// 用户id
///
public long? UserGuid { get; set; }
public string Name { get; set; }
public DateTime LoginTime { get; set; }
public OnlineUsersForChat(string clientid, string name, long? userguid)
{
ConnectionId = clientid;
Name = name;
LoginTime = DateTime.Now;
UserGuid = userguid;
}
}
}