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