File: Model\ValidatedModel.cs
Web Access
Project: src\src\libraries\Microsoft.Extensions.Options\gen\Microsoft.Extensions.Options.SourceGeneration.csproj (Microsoft.Extensions.Options.SourceGeneration)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Collections.Generic;
 
namespace Microsoft.Extensions.Options.Generators
{
    internal sealed record class ValidatedModel(
        string Name,
        string SimpleName,
        bool SelfValidates,
        List<ValidatedMember> MembersToValidate);
}