using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Models.MachineLearning
{
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 Object Meta { get; set; }
}
}