BotSharp/BotSharp.Core/Engines/Dialogflow/OriginalRequest.cs
2018-06-14 07:01:17 -05:00

18 lines
340 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Models
{
[JsonObject]
public class OriginalRequest
{
[JsonProperty("source")]
public string Source { get; set; }
[JsonProperty("data")]
public object Data { get; set; }
}
}