2018-08-08 21:39:00 +00:00
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Core.Engines
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PipeModel
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Pipe name
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Pipe type name
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string Class { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DateTime Time { get; set; }
|
|
|
|
|
|
|
2018-08-09 20:22:53 +00:00
|
|
|
|
public string Model { get; set; }
|
|
|
|
|
|
|
2018-08-08 21:39:00 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Extra meta data according to pipe
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public JObject Meta { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|