mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-16 16:08:34 +00:00
22 lines
540 B
C#
22 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OSCADSharp.Scripting
|
|
{
|
|
/// <summary>
|
|
/// An object whose properties can be bound to variables
|
|
/// </summary>
|
|
public interface IBindable
|
|
{
|
|
/// <summary>
|
|
/// Binds a variable to property of this object
|
|
/// </summary>
|
|
/// <param name="property"></param>
|
|
/// <param name="variable"></param>
|
|
void Bind(string property, Variable variable);
|
|
}
|
|
}
|