File: Infrastructure\ServerStats.cs | Web Access |
Project: ..\..\..\test\Microsoft.NET.Sdk.Razor.Tool.Tests\Microsoft.NET.Sdk.Razor.Tool.Tests.csproj (Microsoft.NET.Sdk.Razor.Tool.Tests) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.NET.Sdk.Razor.Tool { internal struct ServerStats { internal readonly int Connections; internal readonly int CompletedConnections; internal ServerStats(int connections, int completedConnections) { Connections = connections; CompletedConnections = completedConnections; } } } |