Merge branch 'master' of C:\Users\катя\IdeaProjects\ng-tracker with conflicts.

merge-requests/15/head
Alyona 6 years ago
parent 9013baa209
commit 0341a823d2

@ -0,0 +1,19 @@
package ru.ulstu.timeline.model;
public class EventStatusDto {
private final String id;
private final String name;
public EventStatusDto(Event.EventStatus status) {
this.id = status.name();
this.name = status.getName();
}
public String getId() {
return id;
}
public String getName() {
return name;
}
}
Loading…
Cancel
Save