File: OptProf\Json\OptProfFileFilteredTest.cs
Web Access
Project: Microsoft.DotNet.Build.Tasks.VisualStudio.csproj (Microsoft.DotNet.Build.Tasks.VisualStudio)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

using Newtonsoft.Json;

namespace Microsoft.DotNet.Build.Tasks.VisualStudio;

internal sealed class OptProfFileFilteredTest
{
    [JsonProperty(PropertyName = "fileName")]
    public string FileName { get; set; }

    [JsonProperty(PropertyName = "testCases", Order = 3)]
    public string[] TestCases { get; set; }

}