File: Models\ValidatableProperty.cs
Web Access
Project: src\src\Validation\gen\Microsoft.Extensions.Validation.ValidationsGenerator.csproj (Microsoft.Extensions.Validation.ValidationsGenerator)
// 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;
 
internal sealed record class ValidatableProperty(
    string ContainingTypeFQN,
    string TypeFQN,
    string Name,
    string DisplayName
);