30 lines
841 B
C#
30 lines
841 B
C#
// Decompiled with JetBrains decompiler
|
|||
|
|
// Type: MindLated.Protection.Arithmetic.ArithmeticVt
|
||
|
|
// Assembly: Server, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
||
|
|
// MVID: 33673F0A-7F43-4A2B-BC08-8E59A15CB7DA
|
||
|
|
// Assembly location: C:\Users\Admin\Desktop\Sheet RAT 2.5\Server.exe
|
||
|
|
|
||
|
|
//#nullable disable
|
||
|
|
namespace MindLated.Protection.Arithmetic {
|
||
|
|
|
||
|
|
public class ArithmeticVt
|
||
|
|
{
|
||
|
|
private readonly Value _value;
|
||
|
|
private readonly Token _token;
|
||
|
|
private readonly ArithmeticTypes _arithmeticTypes;
|
||
|
|
|
||
|
|
public ArithmeticVt(Value value, Token token, ArithmeticTypes arithmeticTypes)
|
||
|
|
{
|
||
|
|
this._value = value;
|
||
|
|
this._token = token;
|
||
|
|
this._arithmeticTypes = arithmeticTypes;
|
||
|
|
}
|
||
|
|
|
||
|
|
public Value GetValue() => this._value;
|
||
|
|
|
||
|
|
public Token GetToken() => this._token;
|
||
|
|
|
||
|
|
public ArithmeticTypes GetArithmetic() => this._arithmeticTypes;
|
||
|
|
}
|
||
|
|
}
|