Files
Web_IoTBase_Sever_Prod/CommonEntity/TcpCloseReason.cs

31 lines
795 B
C#
Raw Normal View History

2025-12-11 14:04:39 +08:00
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; }
}
}