| File: src\Generators\Microsoft.Gen.ComplianceReports\Model\ClassifiedItem.cs | Web Access |
| Project: src\src\Generators\Microsoft.Gen.MetadataExtractor\Microsoft.Gen.MetadataExtractor.csproj (Microsoft.Gen.MetadataExtractor) |
// 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.Gen.ComplianceReports; /// <summary> /// A classified field or property. /// </summary> internal sealed class ClassifiedItem { public string SourceFilePath = string.Empty; public int SourceLine; public string Name = string.Empty; public string TypeName = string.Empty; public List<Classification> Classifications = []; }