This commit is contained in:
Stef Heyenrath
2023-05-30 21:41:30 +02:00
parent 35ffbbc7d9
commit ad3ef83c5e
4 changed files with 27 additions and 28 deletions

View File

@@ -0,0 +1,8 @@
using Microsoft.OpenApi.Models;
namespace WireMock.Net.OpenApiParser.Utils;
internal interface IExampleValueGenerator
{
object GetExampleValue(OpenApiSchema? schema);
}