BotSharp/BotSharp.Core/Engines/ModelMetaData.cs

18 lines
391 B
C#
Raw Normal View History

2018-08-08 21:39:00 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines
{
public class ModelMetaData
{
public string Platform { get; set; }
public string Language { get; set; }
public string Version { get; set; }
public DateTime TrainingDate { get; set; }
public List<PipeModel> Pipeline { get; set; }
}
}