aok nordwest

This commit is contained in:
hydrant
2020-04-05 12:19:19 +02:00
parent de2af71cd6
commit 18b316dfe4
2 changed files with 11 additions and 3 deletions

View File

@@ -34,7 +34,10 @@ namespace ReallifeGamemode.Server.Finance
[JsonProperty("rentalFees")]
public int RentalFees { get; set; } = 0;
public Paycheck(float FinancialHelp, float FinancialInterest, int VehicleTaxation, float PropertyTaxation, int Wage, int Amount, int RentalFees)
[JsonProperty("healthInsurance")]
public int HealthInsurance { get; set; } = 0;
public Paycheck(float FinancialHelp, float FinancialInterest, int VehicleTaxation, float PropertyTaxation, int Wage, int Amount, int RentalFees, int HealthInsurance)
{
this.FinancialHelp = FinancialHelp;
this.FinancialInterest = FinancialInterest;
@@ -43,6 +46,7 @@ namespace ReallifeGamemode.Server.Finance
this.Wage = Wage;
this.Amount = Amount;
this.RentalFees = RentalFees;
this.HealthInsurance = HealthInsurance;
}
}
}