namespace XFEExtension.NetCore.ServerInteractive.Models.RequesterModels;
///
/// 标准客户端实例请求
///
public class StandardClientInstanceRequest
{
///
/// 构建请求体
///
public Func ConstructBody { get; set; } = (_, _, _) => null!;
///
/// 处理请求
///
public Func? ProcessResponse { get; set; } = response => response;
}