// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT license. using System.Collections.Generic; using RamlToOpenApiConverter; namespace WireMock.Net.OpenApiParser.Models; /// /// Object containing all diagnostic information related to Open API parsing. /// public class OpenApiDiagnostic { /// /// List of all errors. /// public List Errors { get; set; } = []; /// /// List of all warnings /// public List Warnings { get; set; } = []; /// /// Open API specification version of the document parsed. /// public OpenApiSpecificationVersion SpecificationVersion { get; set; } }