Skip to content
Snippets Groups Projects
NamedEntity.java 372 B
Newer Older
Claudenir Fonseca's avatar
Claudenir Fonseca committed
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 = "0";
        name = "Missingno";
        created = Instant.now().toString();
        lastUpDate = Instant.now().toString();
    }

}