OpenAPI.NET.OData/src/Microsoft.OpenApi.OData.Reader/OData/ODataComplexValue.cs
2019-06-20 17:32:30 -07:00

15 lines
479 B
C#

// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See LICENSE in the repo root for license information.
// ------------------------------------------------------------
namespace Microsoft.OpenApi.OData
{
/// <summary>
/// Represents an OData complex value.
/// </summary>
internal class ODataComplexValue : ODataResourceValue
{
}
}