31 lines
795 B
C#
31 lines
795 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace CommonEntity
|
|||
|
|
{
|
|||
|
|
public class TcpCloseReason
|
|||
|
|
{
|
|||
|
|
public string? endpoint { get; set; }
|
|||
|
|
public int? clientid { get; set; }
|
|||
|
|
public string? close_reason { get; set; }
|
|||
|
|
public long currenttimestamp { get; set; }
|
|||
|
|
}
|
|||
|
|
public class TcpConnectLog
|
|||
|
|
{
|
|||
|
|
public string? endpoint { get; set; }
|
|||
|
|
public int? clientid { get; set; }
|
|||
|
|
public long currenttimestamp { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class TcpSendDataLog
|
|||
|
|
{
|
|||
|
|
public string? endpoint { get; set; }
|
|||
|
|
public int? clientid { get; set; }
|
|||
|
|
public int[]? send_data { get; set; }
|
|||
|
|
public long currenttimestamp { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|