File: Infrastructure\RouteUsageModel.cs | Web Access |
Project: src\src\Framework\AspNetCoreAnalyzers\src\Analyzers\Microsoft.AspNetCore.App.Analyzers.csproj (Microsoft.AspNetCore.App.Analyzers) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.AspNetCore.Analyzers.Infrastructure.RoutePattern; using Microsoft.AspNetCore.Analyzers.RouteEmbeddedLanguage.Infrastructure; namespace Microsoft.AspNetCore.App.Analyzers.Infrastructure; internal sealed class RouteUsageModel { public RoutePatternTree RoutePattern { get; init; } = default!; public RouteUsageContext UsageContext { get; init; } } |