Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make SwaggerIgnoreAttribute sealed
  • Loading branch information
jcracknell committed Apr 15, 2024
commit cb8ad63bff6754e96ac12be72b601800dd053274
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ namespace Swashbuckle.AspNetCore.Annotations
/// to capture and invalidate unsupported properties.
/// </remarks>
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Parameter | AttributeTargets.Property)]
public class SwaggerIgnoreAttribute : Attribute { }
public sealed class SwaggerIgnoreAttribute : Attribute { }
}