From 43d7f14204ce60a4987516e01dec15ca9ec2e3f9 Mon Sep 17 00:00:00 2001 From: Tim Heuer Date: Fri, 30 Dec 2016 10:50:55 -0500 Subject: [PATCH] Comment removal in prep for newer commenting --- Alexa.NET/Response/PlainTextOutputSpeech.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Alexa.NET/Response/PlainTextOutputSpeech.cs b/Alexa.NET/Response/PlainTextOutputSpeech.cs index 8021dcb..ffc747b 100644 --- a/Alexa.NET/Response/PlainTextOutputSpeech.cs +++ b/Alexa.NET/Response/PlainTextOutputSpeech.cs @@ -4,11 +4,6 @@ namespace Alexa.NET.Response { public class PlainTextOutputSpeech : IOutputSpeech { - /// - /// A string containing the type of output speech to render. Valid types are: - /// - "PlainText" - Indicates that the output speech is defined as plain text. - /// - "SSML" - Indicates that the output speech is text marked up with SSML. - /// [JsonProperty("type")] [JsonRequired] public string Type @@ -16,9 +11,6 @@ public string Type get { return "PlainText"; } } - /// - /// A string containing the speech to render to the user. Use this when type is "PlainText" - /// [JsonRequired] [JsonProperty("text")] public string Text { get; set; }