using Newtonsoft.Json.Linq; using System; using System.Collections.Generic; using System.Text; namespace BotSharp.Core.Engines { public class PipeModel { /// /// Pipe name /// public string Name { get; set; } /// /// Pipe type name /// public string Class { get; set; } public DateTime Time { get; set; } public string Model { get; set; } /// /// Extra meta data according to pipe /// public JObject Meta { get; set; } } }