14 lines
258 B
C#
14 lines
258 B
C#
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; }
|
|
}
|
|
}
|