namespace WireMock.Org.Abstractions { /// /// Pre-emptive basic auth credentials to match against /// public class RequestBasicAuthCredentials { public string Password { get; set; } public string Username { get; set; } } }