namespace InterfaceForward.Application.Contracts; public class InterfaceRelayOptions { /// /// 失败需要预报的系统接口code /// public string[] FailedNeedPush { get; set; } /// /// 批量转发线程数量 /// public int BatchForwardThread { get; set; } /// /// 服务商接口默认QPS /// public int ServiceProviderDefaultQps { get; set; } /// /// 自旋周期ms /// public int SpinPeriod { get; set; } }