using System; using System.Collections.Generic; namespace WebApp.Models.Hub { public class UserInfo { public UserInfo() { LastLoginTime = DateTime.Now; Rooms = new List(); Prgs = new List(); } /// /// 當前連接通訊ID /// public string ConnectionId { get; set; } /// /// 組織ID /// public string OrgId { get; set; } /// /// 帳號ID /// public string UserId { get; set; } /// /// 帳號名稱 /// public string UserName { get; set; } /// /// 最後登陸時間 /// public DateTime LastLoginTime { get; set; } /// /// 用户房间集合 /// public virtual List Rooms { get; set; } //當前編輯程式id集合 public List Prgs { get; set; } } }