using System.ServiceModel.Channels; namespace Falcon.SugarApi.WebService { /// /// WebService客户端配置 /// public class WebServiceClientOption { /// /// 绑定 /// public Binding? Binding { get; set; } /// /// 服务端地址 /// public string? Address { get; set; } } }