mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-04 03:52:52 +08:00
7 lines
247 B
C#
7 lines
247 B
C#
namespace NetAdmin.Host.Attributes;
|
||
|
||
/// <summary>
|
||
/// 标记一个Action,其响应的json结果会被删除值为null的节点
|
||
/// </summary>
|
||
[AttributeUsage(AttributeTargets.Method)]
|
||
public sealed class RemoveNullNodeAttribute : Attribute; |