From a6a9a96aa1ab9f1d3a8ab15c5cf4aec8577cb92d Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Mon, 31 May 2021 23:47:26 -0400 Subject: [PATCH] idk --- MBS.Framework/Logic/Variable.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/MBS.Framework/Logic/Variable.cs b/MBS.Framework/Logic/Variable.cs index 7724546..6011dc9 100644 --- a/MBS.Framework/Logic/Variable.cs +++ b/MBS.Framework/Logic/Variable.cs @@ -37,8 +37,12 @@ namespace MBS.Framework.Logic } public string Name { get; set; } = null; + public string Title { get; set; } = null; public Expression Expression { get; set; } = null; + public Variable() + { + } public Variable(string name, Expression expression = null) { Name = name;