mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-04-23 00:38:28 +02:00
Add a new stub mapping
This commit is contained in:
17
src/WireMock.Net/Server/IRespondWithAProviderGuid.cs
Normal file
17
src/WireMock.Net/Server/IRespondWithAProviderGuid.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
|
||||
namespace WireMock.Server
|
||||
{
|
||||
/// <summary>
|
||||
/// IRespondWithAProviderGuid
|
||||
/// </summary>
|
||||
public interface IRespondWithAProviderGuid : IRespondWithAProvider
|
||||
{
|
||||
/// <summary>
|
||||
/// Define a unique identifier for this mapping.
|
||||
/// </summary>
|
||||
/// <param name="guid">The unique identifier.</param>
|
||||
/// <returns>The <see cref="IRespondWithAProviderGuid"/>.</returns>
|
||||
IRespondWithAProviderGuid WithGuid(Guid guid);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user