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