import { ProfilingStrategyTypes } from "../enums/ProfilingStrategyTypes.enum"; export type Year = number; export type Month = number; export type MonthlyConsumption = number; export type Period = number; export type ConsumptionType = number; export class ProfilingStrategyDto { type: ProfilingStrategyTypes; totalConsumption: ConsumptionType; monthlyConsumptionJSON: Record>; periodConsumptionJSON: Record>; monthlyPeriodConsumptionJSON: Record< Year, Record> >; }