mirror of
https://framagit.org/JonathanMM/sutom.git
synced 2025-01-09 04:41:30 +01:00
6 lines
160 B
TypeScript
6 lines
160 B
TypeScript
import { LettreStatut } from "./lettreStatut";
|
|
|
|
export default class LettreResultat {
|
|
lettre: string = "";
|
|
statut: LettreStatut = LettreStatut.NonTrouve;
|
|
}
|