From 3de9185606f420b0ea694d7e0b634528e71e2662 Mon Sep 17 00:00:00 2001 From: Sascha Corti Date: Wed, 15 Feb 2017 17:41:19 +0100 Subject: [PATCH] Added property "locale" to Alexa.NET.Request.Type.Request Alexa supplies the following locales: "en-US" "en-GB" "de-DE" --- Alexa.NET/Request/Type/Request.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Alexa.NET/Request/Type/Request.cs b/Alexa.NET/Request/Type/Request.cs index db9e67d..149b9d1 100644 --- a/Alexa.NET/Request/Type/Request.cs +++ b/Alexa.NET/Request/Type/Request.cs @@ -11,6 +11,9 @@ public abstract class Request [JsonProperty("requestId")] public string RequestId { get; set; } + [JsonProperty("locale")] + public string Locale { get; set; } + [JsonProperty("timestamp")] public DateTime Timestamp { get; set; } }