// ------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License (MIT). See LICENSE in the repo root for license information. // ------------------------------------------------------------ using System; namespace Microsoft.OpenApi { /// /// Configuration settings for Open API writers. /// public sealed class OpenApiSerializerSettings { /// /// Open Api specification version /// public OpenApiSpecVersion SpecVersion { get; set; } = OpenApiSpecVersion.OpenApi3_0; /// /// Open Api document format. /// public OpenApiFormat Format { get; set; } = OpenApiFormat.Json; } }