mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
15 lines
271 B
C#
Executable File
15 lines
271 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SDKCSharp.Request
|
|
{
|
|
/// <summary>
|
|
/// 元数据,放在属性上面,表示忽略签名
|
|
/// </summary>
|
|
sealed class IgnoreSign : Attribute
|
|
{
|
|
}
|
|
}
|