From d0f03309f3b6e068913d3e72bf1e11f024df6697 Mon Sep 17 00:00:00 2001 From: Joe Brinkman Date: Sat, 14 Jan 2017 12:14:08 -0800 Subject: [PATCH] SsmlOutputSpeech is not Public Attempting to create an Ssml based response fails because ssmlOutputSpeech is a private class. --- Shared/Models/Responses/SsmlOutputSpeech.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shared/Models/Responses/SsmlOutputSpeech.cs b/Shared/Models/Responses/SsmlOutputSpeech.cs index 48b6a86..cb098e9 100644 --- a/Shared/Models/Responses/SsmlOutputSpeech.cs +++ b/Shared/Models/Responses/SsmlOutputSpeech.cs @@ -2,7 +2,7 @@ namespace Slight.Alexa.Framework.Models.Responses { - class SsmlOutputSpeech : IOutputSpeech + public class SsmlOutputSpeech : IOutputSpeech { /// /// A string containing the type of output speech to render. Valid types are: @@ -23,4 +23,4 @@ public string Type [JsonProperty("ssml")] public string Ssml { get; set; } } -} \ No newline at end of file +}