Small helper library allowing Alexa.NET Skills to more easily access the Pin Confirmation functionality
place this in your initialisation/setup code and then interaction with pin confirmation can be performed by extension methods shown below
PinConfirmationInput.AddToConnectionTask();
SkillResponse response = ...
response.AddPinConfirmation("[yourTokenHere]");
if(skillRequest.Request is SessionResumedRequest sessionResumed)
{
var result = sessionResumed.GetPinResult();
}