BotSharp/BotSharp.Core/Engines/BotTrainOptions.cs

15 lines
262 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
{
/// <summary>
/// Model Name
/// </summary>
public string Model { get; set; }
}
}