Add a new stub mapping

This commit is contained in:
Stef Heyenrath
2017-01-27 21:19:30 +01:00
parent a334974bef
commit 1f33e6a671
28 changed files with 576 additions and 264 deletions

View 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);
}
}