18 lines
346 B
C#
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; }
|
|
}
|
|
}
|