22 lines
485 B
C#
22 lines
485 B
C#
using InterfaceForward.Domain.Shared.Dtos;
|
|
|
|
namespace InterfaceForward.Application.Contracts.ForwardCore;
|
|
|
|
[Serializable]
|
|
public class InterfaceRelayUnifyResultDto : UnifyResultDto
|
|
{
|
|
/// <summary>
|
|
/// 请求Id
|
|
/// </summary>
|
|
public Guid RequestId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 原报文
|
|
/// </summary>
|
|
public string? OriginalMessage { get; set; }
|
|
|
|
/// <summary>
|
|
/// 附加数据
|
|
/// </summary>
|
|
public string? Attach { get; set; }
|
|
} |