2018-08-09 21:54:52 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
2018-08-14 22:21:09 +00:00
|
|
|
|
using System.IO;
|
2018-08-09 21:54:52 +00:00
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Core.Engines
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PipeSettings
|
|
|
|
|
|
{
|
2018-08-14 22:21:09 +00:00
|
|
|
|
public string ProjectDir { get; set; }
|
2018-08-09 21:54:52 +00:00
|
|
|
|
public string ModelDir { get; set; }
|
|
|
|
|
|
public string AlgorithmDir { get; set; }
|
2018-08-14 22:21:09 +00:00
|
|
|
|
public string TempDir
|
|
|
|
|
|
{
|
|
|
|
|
|
get
|
|
|
|
|
|
{
|
2018-08-15 22:37:23 +00:00
|
|
|
|
return Path.Combine(ProjectDir, "Temp");
|
2018-08-14 22:21:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2018-08-09 21:54:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
}
|