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!; }