Product_Wms/WcsMain/Utils/Tcp/Entity/TcpClientSendResult.cs
icewint 03c600bc70 1、修改文件结构
2、删除不使用的 using
2024-11-15 11:38:01 +08:00

20 lines
369 B
C#

namespace WcsMain.Utils.Tcp.Entity;
/// <summary>
/// 作为 Tcp客户端发送时的返回信息
/// </summary>
public class TcpClientSendResult
{
/// <summary>
/// 发送是否成功
/// </summary>
public bool Success { get; set; }
/// <summary>
/// 发送时的异常
/// </summary>
public Exception? Exception { get; set; }
}