itfx/src/InterfaceForward.Application/Rabbit/BatchForwardEvent.cs
2025-02-06 17:34:51 +08:00

20 lines
464 B
C#

namespace InterfaceForward.Application.Rabbit;
public class BatchForwardEvent
{
public Guid RequestId { get; set; }
public int AppId { get; set; }
public string UpStreamCode { get; set; } = null!;
public string ServiceProviderCode { get; set; } = null!;
public string? Attach { get; set; }
public string? ResSubscribeName { get; set; }
public bool IsReturnMessage { get; set; }
public string Data { get; set; } = null!;
}