BotSharp/BotSharp.Core/Models/OriginalRequest.cs

18 lines
340 B
C#
Raw Normal View History

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 OriginalRequest
{
[JsonProperty("source")]
public string Source { get; set; }
[JsonProperty("data")]
public object Data { get; set; }
}
}