初始化
This commit is contained in:
30
CommonEntity/TcpCloseReason.cs
Normal file
30
CommonEntity/TcpCloseReason.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user