// Package goodcalc is a good balance calculator // The logic of the calculation is based on the // excel calculator. The simple steps can be found // inside the MatrixBerechnung.ods file inside this // repository. package goodcalc // Aspect does contain the valuation of the company. type Aspect struct { No string `json:"no"` Weight float32 `json:"weight"` ValuationPoints int `json:"valuation_points"` maxValuationPoints int } // NegativeAspect has the same fields like Aspect. But the // business logic requieres a different handling. type NegativeAspect struct { Aspect }