11 lines
479 B
C#
11 lines
479 B
C#
namespace Registration.API.Configuration;
|
|
|
|
public class VbytesRelayOptions
|
|
{
|
|
public string BaseUrl { get; set; } = string.Empty;
|
|
public string ParticipantRegisterPath { get; set; } = "/api/participant";
|
|
public string ApiKeyHeaderName { get; set; } = "X-Api-Key";
|
|
public string ApiKey { get; set; } = string.Empty;
|
|
public string ClientCertificatePfxPath { get; set; } = string.Empty;
|
|
public string VolunteerRegisterPath { get; set; } = "/api/volunteer";
|
|
}
|