BotSharp/BotSharp.Core/Models/QuestionMetadata.cs

25 lines
551 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")]
public List<Entity> Entities { get; set; }
}
}