using System;
namespace WireMock.Server
{
///
/// IRespondWithAProviderGuid
///
public interface IRespondWithAProviderGuid : IRespondWithAProvider
{
///
/// Define a unique identifier for this mapping.
///
/// The unique identifier.
/// The .
IRespondWithAProviderGuid WithGuid(Guid guid);
}
}