Добавьте файлы проекта.
This commit is contained in:
parent
0396adddb6
commit
dcfd7c6e70
21 changed files with 1928 additions and 0 deletions
10
Model/CaculatorData.cs
Normal file
10
Model/CaculatorData.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
namespace calculator.Model;
|
||||
|
||||
public class CaculatorData
|
||||
{
|
||||
public Stack<string> Operands { get; set; } = new();
|
||||
public string? Operation { get; set; }
|
||||
public string? SingleOperation { get; set; }
|
||||
public bool Caculated { get; set; }
|
||||
public string? LastOperand { get; set; }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue