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