mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-11 21:48:34 +00:00
16 lines
327 B
C#
16 lines
327 B
C#
using OSCADSharp.Scripting;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OSCADSharp.Bindings
|
|
{
|
|
internal class Binding
|
|
{
|
|
public string OpenSCADFieldName { get; set; }
|
|
public Variable BoundVariable { get; set; }
|
|
}
|
|
}
|