21 lines
No EOL
414 B
C#
21 lines
No EOL
414 B
C#
using System.Windows;
|
|
|
|
namespace AdvancedCalculator
|
|
{
|
|
public class VariableItem
|
|
{
|
|
#region Properties
|
|
|
|
public string VariableName { get; set; }
|
|
|
|
public string Icon { get; set; }
|
|
|
|
public string Value { get; set; }
|
|
|
|
public Visibility ExpressionVisibility { get; set; }
|
|
|
|
public string ExpressionComputation { get; set; }
|
|
|
|
#endregion Properties
|
|
}
|
|
} |