Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

20 righe
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. }