BotSharp/BotSharp.Core/Engines/Dialogflow/QuestionMetadata.cs

25 lines
555 B
C#
Raw Normal View History

2018-03-28 22:08:49 +00:00
using BotSharp.Core.Entities;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
2018-03-28 22:08:49 +00:00
namespace BotSharp.Core.Models
{
[JsonObject]
public class QuestionMetadata
{
[JsonProperty("timezone")]
public string Timezone { get; set; }
[JsonProperty("lang")]
public string Language { get; set; }
[JsonProperty("sessionId")]
internal string SessionId { get; set; }
[JsonProperty("entities")]
2018-05-22 00:39:33 +00:00
public List<EntityType> Entities { get; set; }
}
}