mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-16 08:26:46 +01:00
12 lines
284 B
C#
12 lines
284 B
C#
namespace WireMock.Org.Abstractions
|
|
{
|
|
/// <summary>
|
|
/// Pre-emptive basic auth credentials to match against
|
|
/// </summary>
|
|
public class RequestBasicAuthCredentials
|
|
{
|
|
public string Password { get; set; }
|
|
|
|
public string Username { get; set; }
|
|
}
|
|
} |