温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:NChat简易聊天室源码(.Net 3.5,LINQ,AJAX)
当前文件路径:NChat/NChat.Common/ActiveUserModel.cs

1using System; 2
using System.Collections.Generic; 3
using System.Linq; 4
using System.Text; 5
6
namespace NChat.Common 7
{ 8
public class ActiveUserModel 9
{ 10
public string Name { get; set; } 11
public DateTime Time{ get; set; } 12
13
public ActiveUserModel(string name, DateTime time) 14
{ 15
Name = name; 16
Time = time; 17
} 18
} 19
} 20





}
}