BotSharp/BotSharp.Platform.Models/BotTrainOptions.cs
2018-10-01 12:15:17 -05:00

20 lines
389 B
C#

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