SqrtY, Factorial, CubeRoot, Square, Cube, PowY, Log, Ln, Exp, Inv, Pi, Sinh, Sin, Cosh, Cos, Tanh, Tan
11 lines
No EOL
252 B
C#
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; }
|
|
} |