mirror of
https://github.com/bitwarden/server.git
synced 2024-11-24 12:35:25 +01:00
8 lines
198 B
C#
8 lines
198 B
C#
|
namespace Bit.Test.Common.MockedHttpClient;
|
|||
|
|
|||
|
public interface IMockedHttpResponse
|
|||
|
{
|
|||
|
int NumberOfResponses { get; }
|
|||
|
Task<HttpResponseMessage> RespondToAsync(HttpRequestMessage request);
|
|||
|
}
|