namespace XFEExtension.NetCore.ServerInteractive.Models.RequesterModels; /// /// 标准客户端实例请求 /// public class StandardClientInstanceRequest { /// 实际请求路由;为空时使用注册名称。 public string? Route { get; set; } /// /// 构建请求体 /// public Func ConstructBody { get; set; } = (_, _, _) => null!; /// /// 处理请求 /// public Func? ProcessResponse { get; set; } = response => response; }