Forked from
Morais Fonseca, Claudenir (UT-EEMCS) / mod4-wp-2023-2024-pokemon
5 commits behind the upstream repository.
-
Morais Fonseca, Claudenir (UT-EEMCS) authoredMorais Fonseca, Claudenir (UT-EEMCS) authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
NamedEntity.java 408 B
package nl.utwente.mod4.pokemon.model;
import java.time.Instant;
public class NamedEntity {
public String id;
public String name;
public String created;
public String lastUpDate;
public NamedEntity() {
id = null;
name = null;
created = null;
lastUpDate = null;
}
public boolean isValid() {
return id != null && !id.isEmpty();
}
}