BotSharp/BotSharp.Core/Engines/BotTrainOptions.cs
2018-08-22 23:24:13 -05:00

15 lines
262 B
C#

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