This commit is contained in:
Michael Becker 2021-05-31 23:47:26 -04:00
parent bf74d17e00
commit a6a9a96aa1
No known key found for this signature in database
GPG Key ID: 98C333A81F18C22C

View File

@ -37,8 +37,12 @@ namespace MBS.Framework.Logic
} }
public string Name { get; set; } = null; public string Name { get; set; } = null;
public string Title { get; set; } = null;
public Expression Expression { get; set; } = null; public Expression Expression { get; set; } = null;
public Variable()
{
}
public Variable(string name, Expression expression = null) public Variable(string name, Expression expression = null)
{ {
Name = name; Name = name;