BotSharp/BotSharp.Core/Models/QuestionMetadata.cs
2018-05-21 19:39:33 -05:00

25 lines
555 B
C#

using BotSharp.Core.Entities;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
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")]
public List<EntityType> Entities { get; set; }
}
}