Created
August 2, 2022 17:49
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
/// <summary> | |
/// Registers the middleware and adds the arguments for filtering | |
/// </summary> | |
public sealed class UseFilteringAttribute : ObjectFieldDescriptorAttribute | |
{ | |
// Notice the [CallerLineNumber] attribute here 👇 | |
public UseFilteringAttribute(Type? filterType = null, [CallerLineNumber] int order = 0) | |
{ | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment