mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-11 21:48:34 +00:00
16 lines
312 B
C#
16 lines
312 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OSCADSharp
|
|
{
|
|
internal class CompoundVariable : Variable
|
|
{
|
|
internal CompoundVariable(string name, object value) : base(name, value, false)
|
|
{
|
|
}
|
|
}
|
|
}
|