BotSharp/Platform.Dialogflow/Models/OriginalRequest.cs
2018-10-02 20:44:11 -05:00

18 lines
346 B
C#

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