diff --git a/pkg/ecalc/ecalc.go b/pkg/ecalc/ecalc.go index 0a6928d..f8919d0 100644 --- a/pkg/ecalc/ecalc.go +++ b/pkg/ecalc/ecalc.go @@ -77,14 +77,13 @@ type Topic struct { } type Aspect struct { - Points int `json:"points"` - MaxPoints float64 `json:"maxPoints"` - ID int `json:"id,omitempty"` - ShortName string `json:"shortName"` - Name string `json:"name"` - Estimations int `json:"estimations"` - Weight float64 `json:"weight"` - IsWeightSelectedByUser bool `json:"isWeightSelectedByUser"` - Aspects []Aspect `json:"aspects"` - IsPositive bool `json:"isPositive"` + Points int `json:"points"` + MaxPoints float64 `json:"maxPoints"` + ID int `json:"id,omitempty"` + ShortName string `json:"shortName"` + Name string `json:"name"` + Estimations int `json:"estimations"` + Weight float64 `json:"weight"` + IsWeightSelectedByUser bool `json:"isWeightSelectedByUser"` + IsPositive bool `json:"isPositive"` }