As far as the compiler knows, it has not been initialized and can be null. Use the !(null-forgiving operator) as a last resort (and leave a comment explaining why you used !.
// This should be set by the options binding
public string Issuer { get; set; } = null!;