package org.example.tampoposerverdtram.resources;
import java.util.*;
public class Activity {
private User user;
private String updatedTime;
public Map<String, Object> getValue() {
Map temp_nil10 = new HashMap<>();
temp_nil10.put("updatedTime",this.getUpdatedTime());
return temp_nil10;
}
public String getUpdatedTime() {
return this.updatedTime;
}
public Activity(String updatedTime, User user) {
this.updatedTime = updatedTime;
this.user = user;
}
}