| File: ValidatableTypeAttribute.cs | Web Access |
| Project: src\aspnetcore\src\Validation\src\Microsoft.Extensions.Validation.csproj (Microsoft.Extensions.Validation) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Extensions.Validation; /// <summary> /// Indicates that a type is validatable to support discovery by the /// validations generator. /// </summary> [AttributeUsage(AttributeTargets.Class)] public sealed class ValidatableTypeAttribute : Attribute { }