Miese Corona Zeiten push für Lenhardt

This commit is contained in:
Siga
2020-05-10 19:19:53 +02:00
parent 15e4cec8ee
commit efbff34c21
159 changed files with 8042 additions and 8695 deletions

View File

@@ -1,41 +1,32 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using GTANetworkAPI;
using Newtonsoft.Json;
using ReallifeGamemode.Database.Entities;
using ReallifeGamemode.Server.Extensions;
using ReallifeGamemode.Database.Models;
using ReallifeGamemode.Server.Services;
using Newtonsoft.Json;
namespace ReallifeGamemode.Server.Finance
{
public class Paycheck
{
[JsonProperty("financialHelp")]
public float FinancialHelp { get; set; } = 0;
{
[JsonProperty("financialHelp")]
public float FinancialHelp { get; set; } = 0;
[JsonProperty("financialInterest")]
public float FinancialInterest { get; set; } = 0;
[JsonProperty("financialInterest")]
public float FinancialInterest { get; set; } = 0;
[JsonProperty("vehicleTaxation")]
public int VehicleTaxation { get; set; } = 0;
[JsonProperty("vehicleTaxation")]
public int VehicleTaxation { get; set; } = 0;
[JsonProperty("propertyTaxation")]
public float PropertyTaxation { get; set; } = 0;
[JsonProperty("propertyTaxation")]
public float PropertyTaxation { get; set; } = 0;
[JsonProperty("wage")]
public int Wage { get; set; } = 0;
[JsonProperty("wage")]
public int Wage { get; set; } = 0;
[JsonProperty("amount")]
public int Amount { get; set; } = 0;
[JsonProperty("amount")]
public int Amount { get; set; } = 0;
[JsonProperty("rentalFees")]
public int RentalFees { get; set; } = 0;
[JsonProperty("rentalFees")]
public int RentalFees { get; set; } = 0;
[JsonProperty("healthInsurance")]
public int HealthInsurance { get; set; } = 0;
[JsonProperty("healthInsurance")]
public int HealthInsurance { get; set; } = 0;
[JsonProperty("factionMoney")]
public int? FactionMoney { get; set; } = 0;
@@ -53,4 +44,4 @@ namespace ReallifeGamemode.Server.Finance
this.FactionMoney = FactionMoney;
}
}
}
}