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

24 lines
619 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 document format.
/// </summary>
public enum OpenApiFormat
{
/// <summary>
/// JSON format.
/// </summary>
Json,
/// <summary>
/// Yaml format.
/// </summary>
Yaml
}
}