Calculator/Model/CaculatorData.cs
Мария d3836d6cfc Добавлены операци:
SqrtY,
Factorial,
CubeRoot,
Square,
Cube,
PowY,
Log,
Ln,
Exp,
Inv,
Pi,
Sinh,
Sin,
Cosh,
Cos,
Tanh,
Tan
2024-04-04 22:49:32 +03:00

11 lines
No EOL
252 B
C#

using calculator.Common;
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; }
}