-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Obsolete info for ResponseDataAttribute
- Loading branch information
1 parent
70419cb
commit b188465
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
src/Cuture.AspNetCore.ResponseAutoWrapper/Attributes/ResponseDataAttribute.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
using System; | ||
|
||
namespace Cuture.AspNetCore.ResponseAutoWrapper; | ||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
[AttributeUsage(AttributeTargets.GenericParameter | AttributeTargets.Field | AttributeTargets.Property, Inherited = false, AllowMultiple = false)] | ||
[Obsolete("此特性已移除,现在按约定进行配置,约定Data对应的泛型参数为最后一个泛型参数。", true)] | ||
public sealed class ResponseDataAttribute : Attribute | ||
{ | ||
} |