22 lines
507 B
Java
22 lines
507 B
Java
package com.covas.Json;
|
|
|
|
import io.quarkus.runtime.annotations.RegisterForReflection;
|
|
|
|
@RegisterForReflection
|
|
public class UserSingle {
|
|
|
|
public final String name;
|
|
public final String pseudo;
|
|
public final String firstname;
|
|
public final String description;
|
|
|
|
public UserSingle(String name, String pseudo, String firstname, String description){
|
|
this.name = name;
|
|
this.pseudo = pseudo;
|
|
this.firstname = firstname;
|
|
this.description = description;
|
|
|
|
}
|
|
|
|
}
|