Add total costs to result interface

This commit is contained in:
Patrick Gebhardt 2020-06-23 11:43:39 +02:00
parent 88ce05c848
commit dc6da042f9

View File

@ -4,6 +4,7 @@ import {Region} from './region.interface';
export interface Result extends Region {
score: number;
scores: Score[];
total_accommodation_costs: number;
}
export interface Score {