Files
WireMock.Net/src/WireMock.Net.OpenApiParser/Utils/IExampleValueGenerator.cs
Stef Heyenrath ad3ef83c5e .
2023-05-30 21:41:30 +02:00

8 lines
174 B
C#

using Microsoft.OpenApi.Models;
namespace WireMock.Net.OpenApiParser.Utils;
internal interface IExampleValueGenerator
{
object GetExampleValue(OpenApiSchema? schema);
}