BotSharp/BotSharp.Core/Engines/PipeSettings.cs

14 lines
258 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
namespace BotSharp.Core.Engines
{
public class PipeSettings
{
public string ProjectDir { get; set; }
public string ModelDir { get; set; }
}
}