mirror of
https://framagit.org/JonathanMM/sutom.git
synced 2026-05-10 18:49:10 +02:00
6 lines
209 B
TypeScript
6 lines
209 B
TypeScript
export default class PartieEnCours {
|
|
public propositions: Array<string> | undefined;
|
|
public datePartie: Date | undefined;
|
|
public dateFinPartie: Date | undefined;
|
|
public idPartie: string | undefined;
|
|
}
|