You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using DotNetty.Transport.Channels;
- using System;
- using System.Net;
-
- namespace JT1078.Gateway.Metadata
- {
- public class JT1078HttpSession
- {
- public JT1078HttpSession(
- IChannel channel,
- string userId)
- {
- Channel = channel;
- UserId = userId;
- StartTime = DateTime.Now;
- LastActiveTime = DateTime.Now;
- }
-
- public JT1078HttpSession() { }
-
- public string UserId { get; set; }
-
- public string AttachInfo { get; set; }
-
- public IChannel Channel { get; set; }
-
- public DateTime LastActiveTime { get; set; }
-
- public DateTime StartTime { get; set; }
- }
- }
|