mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-14 22:33:35 +01:00
* Create new project for GraphQL * ... * . * ok? * Update src/WireMock.Net.Shared/Extensions/AnyOfExtensions.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * -- * ... --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
18 lines
467 B
C#
18 lines
467 B
C#
// Copyright © WireMock.Net
|
|
|
|
using GraphQL.Types;
|
|
using WireMock.Models.GraphQL;
|
|
|
|
namespace WireMock.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a wrapper for schema data, providing access to the associated schema.
|
|
/// </summary>
|
|
/// <param name="schema"></param>
|
|
public class SchemaDataWrapper(ISchema schema) : ISchemaData
|
|
{
|
|
/// <summary>
|
|
/// Gets the schema associated with the current instance.
|
|
/// </summary>
|
|
public ISchema Schema { get; } = schema;
|
|
} |