24 lines
485 B
Java
24 lines
485 B
Java
package de.ph87.data.series;
|
|
|
|
import lombok.*;
|
|
|
|
import java.time.*;
|
|
import java.util.*;
|
|
|
|
@Data
|
|
public class AggregationWrapperDto {
|
|
|
|
public final Alignment alignment;
|
|
|
|
public final ZonedDateTime date;
|
|
|
|
public final List<IAggregationDto> aggregations;
|
|
|
|
public AggregationWrapperDto(final Alignment alignment, final ZonedDateTime date, final List<IAggregationDto> aggregations) {
|
|
this.alignment = alignment;
|
|
this.date = date;
|
|
this.aggregations = aggregations;
|
|
}
|
|
|
|
}
|