using System;
namespace WireMock.Server
{
///
/// IRespondWithAProvider
///
public interface IRespondWithAProvider
{
///
/// Define a unique identifier for this mapping.
///
/// The unique identifier.
/// The .
IRespondWithAProvider WithGuid(Guid guid);
///
/// Define a unique title for this mapping.
///
/// The unique title.
/// The .
IRespondWithAProvider WithTitle(string title);
///
/// Define a unique identifier for this mapping.
///
/// The unique identifier.
/// The .
IRespondWithAProvider WithGuid(string guid);
///
/// Define the priority for this mapping.
///
/// The priority.
/// The .
IRespondWithAProvider AtPriority(int priority);
///
/// The respond with.
///
///
/// The provider.
///
void RespondWith(IResponseProvider provider);
}
}