Skip to content

Commit

Permalink
Move fields eventType and startedAt fields closer to related fields
Browse files Browse the repository at this point in the history
  • Loading branch information
dqunbp committed Dec 10, 2024
1 parent aa8c5e3 commit fda8c74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/kontur/disasterninja/dto/EventListDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ public class EventListDto {

private UUID eventId;
private String eventName;
private String eventType;
private String description;
private String location;
private Severity severity;
private Long affectedPopulation;
private Double settledArea;
private Long osmGaps;
private Long loss;
private OffsetDateTime startedAt;
private OffsetDateTime updatedAt;
private List<String> externalUrls;
private List<Double> bbox;
private List<Double> centroid;
private int episodeCount;
private String eventType;
private OffsetDateTime startedAt;

}

0 comments on commit fda8c74

Please sign in to comment.