mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-13 22:48:33 +00:00
28 lines
656 B
C#
28 lines
656 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OSCADSharp.Scripting
|
|
{
|
|
/// <summary>
|
|
/// A value for setting object properties in script output to
|
|
/// a specific variable
|
|
/// </summary>
|
|
public class Variable
|
|
{
|
|
/// <summary>
|
|
/// Name of the variable
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Value of the variable.
|
|
///
|
|
/// Must be compatible with the data type being assigned to.
|
|
/// </summary>
|
|
public object Value { get; set; }
|
|
}
|
|
}
|