OpenAPI.NET.OData/src/Microsoft.OpenApi.OData.Reader/OData/ODataEntityValue.cs

15 lines
477 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 entity value.
/// </summary>
internal class ODataEntityValue : ODataResourceValue
{
}
}