File: ComplexObject.cs
Web Access
Project: src\src\SignalR\clients\ts\FunctionalTests\SignalR.Client.FunctionalTestApp.csproj (SignalR.Client.FunctionalTestApp)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace FunctionalTests;
 
public class ComplexObject
{
    public string String { get; set; }
    public int[] IntArray { get; set; }
    public byte[] ByteArray { get; set; }
    public Guid Guid { get; set; }
    public DateTime DateTime { get; set; }
}