add bank (überweisen, einzahlen, auszahlen, Fraktionskasse)

This commit is contained in:
Michael
2020-07-03 22:24:44 +02:00
parent 4179651790
commit cffcc5659a
9 changed files with 471 additions and 6 deletions

View File

@@ -31,7 +31,10 @@ namespace ReallifeGamemode.Server.Finance
[JsonProperty("factionMoney")]
public int? FactionMoney { get; set; } = 0;
public Paycheck(float FinancialHelp, float FinancialInterest, int VehicleTaxation, float PropertyTaxation, int Wage, int Amount, int RentalFees, int HealthInsurance, int? FactionMoney)
[JsonProperty("otheramount")]
public int? otheramount { get; set; } = 0;
public Paycheck(float FinancialHelp, float FinancialInterest, int VehicleTaxation, float PropertyTaxation, int Wage, int Amount, int RentalFees, int HealthInsurance, int? FactionMoney, int? otheramount)
{
this.FinancialHelp = FinancialHelp;
this.FinancialInterest = FinancialInterest;
@@ -42,6 +45,7 @@ namespace ReallifeGamemode.Server.Finance
this.RentalFees = RentalFees;
this.HealthInsurance = HealthInsurance;
this.FactionMoney = FactionMoney;
this.otheramount = otheramount;
}
}
}