BotSharp/BotSharp.Core/Engines/BotTrainOptions.cs
2018-08-28 09:58:35 -05:00

20 lines
386 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Core.Engines
{
public class BotTrainOptions
{
/// <summary>
/// Agent data direcotry
/// </summary>
public string AgentDir { get; set; }
/// <summary>
/// Model Name
/// </summary>
public string Model { get; set; }
}
}