blob: 0c885081f15c45be0494d4db7a0766d56b22378d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Settings;
namespace Tango.FSE.Procedures
{
public class ProceduresSettings : SettingsBase
{
public String BlendPath { get; set; }
}
}
|