mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-23 01:04:55 +01:00
* Create WireMock.Net.ProtoBuf project * ok * Update Directory.Build.props Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
19 lines
417 B
C#
19 lines
417 B
C#
// Copyright © WireMock.Net
|
|
|
|
namespace WireMock.ResponseBuilders;
|
|
|
|
/// <summary>
|
|
/// The ResponseBuilder interface.
|
|
/// </summary>
|
|
public interface IResponseBuilder : IProxyResponseBuilder
|
|
{
|
|
/// <summary>
|
|
/// The link back to the mapping.
|
|
/// </summary>
|
|
IMapping Mapping { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the response message.
|
|
/// </summary>
|
|
IResponseMessage ResponseMessage { get; }
|
|
} |