using NCC.Dependency; using System; namespace NCC.RemoteRequest { /// /// 配置请求客户端 /// [SuppressSniffer, AttributeUsage(AttributeTargets.Interface | AttributeTargets.Method)] public class ClientAttribute : Attribute { /// /// 构造函数 /// /// public ClientAttribute(string name) { Name = name; } /// /// 客户端名称 /// public string Name { get; set; } } }