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.
 
 

20 lines
352 B

  1. using DotNetty.Transport.Channels;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Net;
  5. using System.Text;
  6. namespace JT809Netty.Core
  7. {
  8. public interface IAppSession
  9. {
  10. string SessionID { get; }
  11. IChannel Channel { get; }
  12. DateTime LastActiveTime { get; set; }
  13. DateTime StartTime { get; }
  14. }
  15. }