added editorconfig and formatted code

This commit is contained in:
hydrant
2019-07-17 19:52:55 +02:00
parent ada071cc93
commit 123ab7d07b
146 changed files with 10839 additions and 10715 deletions

View File

@@ -10,25 +10,25 @@ using ReallifeGamemode.Server.Services;
namespace ReallifeGamemode.Server.Finance
{
public class Paycheck
public class Paycheck
{
public float FinancialHelp { get; set; } = 0;
public float FinancialInterest { get; set; } = 0;
public int VehicleTaxation { get; set; } = 0;
public float PropertyTaxation { get; set; } = 0;
public int Wage { get; set; } = 0;
public int Amount { get; set; } = 0;
public Paycheck(float FinancialHelp, float FinancialInterest, int VehicleTaxation, float PropertyTaxation, int Wage, int Amount)
{
public float FinancialHelp { get; set; } = 0;
public float FinancialInterest { get; set; } = 0;
public int VehicleTaxation { get; set; } = 0;
public float PropertyTaxation { get; set; } = 0;
public int Wage { get; set; } = 0;
public int Amount { get; set; } = 0;
public Paycheck(float FinancialHelp, float FinancialInterest, int VehicleTaxation, float PropertyTaxation, int Wage, int Amount)
{
this.FinancialHelp = FinancialHelp;
this.FinancialInterest = FinancialInterest;
this.VehicleTaxation = VehicleTaxation;
this.PropertyTaxation = PropertyTaxation;
this.Wage = Wage;
this.Amount = Amount;
}
this.FinancialHelp = FinancialHelp;
this.FinancialInterest = FinancialInterest;
this.VehicleTaxation = VehicleTaxation;
this.PropertyTaxation = PropertyTaxation;
this.Wage = Wage;
this.Amount = Amount;
}
}
}