Added bracket support
This commit is contained in:
parent
a7ef4b0af7
commit
a9be1638c3
8 changed files with 164 additions and 72 deletions
|
|
@ -5,7 +5,6 @@ namespace calculator.Model;
|
|||
public class CaculatorData
|
||||
{
|
||||
public string? Input { get; set; }
|
||||
public double? Value { get; set; }
|
||||
public Operation? Operation { get; set; }
|
||||
public bool Caculated { get; set; }
|
||||
public Stack<double?> Values { get; set; } = new();
|
||||
public Stack<Operation> Operations { get; set; } = new();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue