mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-20 00:03:48 +01:00
17 lines
496 B
C#
17 lines
496 B
C#
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);
|
|
}
|
|
} |