Product_Wms/WcsMain/Utils/Tcp/Entity/TcpClientSendResult.cs

20 lines
369 B
C#
Raw Permalink Normal View History

namespace WcsMain.Utils.Tcp.Entity;
2024-10-07 09:51:55 +08:00
/// <summary>
/// 作为 Tcp客户端发送时的返回信息
/// </summary>
public class TcpClientSendResult
{
/// <summary>
/// 发送是否成功
/// </summary>
public bool Success { get; set; }
/// <summary>
/// 发送时的异常
/// </summary>
public Exception? Exception { get; set; }
}