BotSharp/BotSharp.Core/Engines/BotTrainOptions.cs

20 lines
386 B
C#
Raw Normal View History

2018-08-23 04:24:13 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines
{
public class BotTrainOptions
{
2018-08-28 14:58:35 +00:00
/// <summary>
/// Agent data direcotry
/// </summary>
public string AgentDir { get; set; }
2018-08-23 04:24:13 +00:00
/// <summary>
/// Model Name
/// </summary>
public string Model { get; set; }
}
}