interpretador-de-texto-ii / static /models /InterpretadorRequest.js
tiagoenriquez's picture
Upload 49 files
85784d8 verified
class InterpretadorRequest {
/**
* @type {string}
*/
texto;
/**
* @type {string}
*/
pergunta;
/**
*
* @param {string} texto
* @param {string} pergunta
*/
constructor(texto, pergunta) {
this.texto = texto;
this.pergunta = pergunta;
}
}