File: InteropTest\ComplexParameter.cs
Web Access
Project: src\src\Components\test\testassets\BasicTestApp\BasicTestApp.csproj (BasicTestApp)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace BasicTestApp.InteropTest;
 
public class ComplexParameter
{
    public int Id { get; set; }
    public bool IsValid { get; set; }
 
    public Segment Data { get; set; }
}