BotSharp/BotSharp.Platform.Models/BotTrainOptions.cs

20 lines
389 B
C#
Raw Normal View History

2018-08-23 04:24:13 +00:00
using System;
using System.Collections.Generic;
using System.Text;
2018-10-01 17:15:17 +00:00
namespace BotSharp.Platform.Models
2018-08-23 04:24:13 +00:00
{
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; }
}
}