de2bd2f9
“wangming”
项目初始化
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
using NCC.Dependency;
using System;
namespace NCC.RemoteRequest
{
/// <summary>
/// 配置请求客户端
/// </summary>
[SuppressSniffer, AttributeUsage(AttributeTargets.Interface | AttributeTargets.Method)]
public class ClientAttribute : Attribute
{
/// <summary>
/// 构造函数
/// </summary>
/// <param name="name"></param>
public ClientAttribute(string name)
{
Name = name;
}
/// <summary>
/// 客户端名称
/// </summary>
public string Name { get; set; }
}
}
|