OpenAPI.NET.OData/tool/Microsoft.OpenApi/OpenApiSpecVersion.cs

24 lines
644 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
{
/// <summary>
/// Represents the Open Api specification version.
/// </summary>
public enum OpenApiSpecVersion
{
/// <summary>
/// Open Api v2.0
/// </summary>
OpenApi2_0,
/// <summary>
/// Open Api v3.0
/// </summary>
OpenApi3_0
}
}